From 04b9976a3b23b6498e428051dcd617543c540edd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mose=20M=C3=BCller?= Date: Tue, 17 Oct 2023 11:49:42 +0200 Subject: [PATCH] turns of frontend notifications by default --- frontend/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 15c3ba1..41ff80d 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -114,7 +114,7 @@ const App = () => { const stateRef = useRef(state); // Declare a reference to hold the current state const [isInstantUpdate, setIsInstantUpdate] = useState(false); const [showSettings, setShowSettings] = useState(false); - const [showNotification, setShowNotification] = useState(true); + const [showNotification, setShowNotification] = useState(false); const [notifications, setNotifications] = useState([]); const [exceptions, setExceptions] = useState([]);