diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 8680adf07..6cf84b51d 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -6,7 +6,6 @@ import fs from 'fs'; import { useEffect } from 'react'; import AppShelf from '../components/AppShelf/AppShelf'; import LoadConfigComponent from '../components/Config/LoadConfig'; -import SearchBar from '../components/SearchBar/SearchBar'; import { Config } from '../tools/types'; import { useConfig } from '../tools/state'; @@ -53,12 +52,11 @@ export default function HomePage(props: any) { setConfig(initialConfig); }, [initialConfig]); return ( - <> - + <> - + ); }