turns of frontend notifications by default

This commit is contained in:
Mose Müller 2023-10-17 11:49:42 +02:00
parent c1f0b7b74d
commit 04b9976a3b

View File

@ -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([]);