Skip to content

Commit

Permalink
fix: missing index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
rodolfopietro97 committed Jun 14, 2024
1 parent 467c951 commit 51ff1c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
8 changes: 2 additions & 6 deletions apps/frontend/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
import { DAppKitProvider } from "@vechain/dapp-kit-react";
import {
ChakraProvider,
Container,
Flex,
} from "@chakra-ui/react";
import { ChakraProvider, Container, Flex } from "@chakra-ui/react";
import {
Dropzone,
Footer,
InfoCard,
Instructions,
Navbar,
SubmissionModal,
Disclaimer,
} from "./components";
import { lightTheme } from "./theme";
import { GoogleReCaptchaProvider } from "react-google-recaptcha-v3";
import { Disclaimer } from "./components/Disclaimer";

// RECaptcha V3 site key (https://developers.google.com/recaptcha/docs/v3)
const VITE_RECAPTCHA_V3_SITE_KEY = import.meta.env
Expand Down
3 changes: 2 additions & 1 deletion apps/frontend/src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ export * from "./InfoCard";
export * from "./Instructions";
export * from "./Dropzone";
export * from "./Footer";
export * from "./SubmissionModal";
export * from "./SubmissionModal";
export * from "./Disclaimer";

0 comments on commit 51ff1c1

Please sign in to comment.