From ba24bc6d4a98fd19abf665b9e53423a25b7cd77e Mon Sep 17 00:00:00 2001 From: Cooper Ransom Date: Sun, 31 Mar 2024 16:27:45 -0400 Subject: [PATCH] pls fix --- src/setup/App.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/setup/App.tsx b/src/setup/App.tsx index a0f84a40..ef32fab3 100644 --- a/src/setup/App.tsx +++ b/src/setup/App.tsx @@ -90,7 +90,7 @@ function QueryView() { function App() { useHistoryListener(); useOnlineListener(); - const maintenance = true; // Shows maintance page + const maintenance = false; // Shows maintance page const [showDowntime, setShowDowntime] = useState(maintenance); const handleButtonClick = () => { @@ -175,9 +175,9 @@ function App() { } /> )} - {showDowntime && ( + {/*showDowntime && ( - )} + )*/} ); }