From e75ff14975431353d8dbf733368a00df20238ed2 Mon Sep 17 00:00:00 2001 From: Aj - Thomas Date: Mon, 16 May 2022 13:54:54 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20Remove=20search=20bar=20from=20i?= =?UTF-8?q?ndex?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/index.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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 ( - <> - + <> - + ); }