diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index ce37646..0dbf134 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,12 +1,10 @@ import { ComponentProps } from "react"; import Navbar from "./Navbar"; -import WarningBanner from "./WarningBanner"; function Layout({ children, ...props }: ComponentProps<"main">) { return (
-
{children}
diff --git a/src/components/WarningBanner.tsx b/src/components/WarningBanner.tsx deleted file mode 100644 index 36e0063..0000000 --- a/src/components/WarningBanner.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import { FC } from "react"; - -const WarningBanner: FC = () => { - return ( -
-
-
- - Data on this dashboard will not be accurate until there is - significant trading activity on dYdX v4. - -
-
-
- ); -}; - -export default WarningBanner;