From 82a486540423d5b8f29c0fd03419ec7e1109dd3e Mon Sep 17 00:00:00 2001 From: Dunemask Date: Fri, 12 Aug 2022 13:28:19 +0000 Subject: [PATCH] Fixed default settings --- src/ctx/StoreContext.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ctx/StoreContext.jsx b/src/ctx/StoreContext.jsx index 550762a..d782a6f 100644 --- a/src/ctx/StoreContext.jsx +++ b/src/ctx/StoreContext.jsx @@ -9,11 +9,11 @@ const localStorage = { setItem: () => {}, getItem: () => {} }; const localSettings = localStorage.getItem("settings"); const defaultSettings = { - focusJob: false, - simplifiedControls: false, + focusJob: true, + simplifiedControls: true, logAppDetails: true, defaultRegion: "us", - defaultPage: "jobs", + defaultPage: "failing", }; const settings = localSettings ? JSON.parse(localSettings) : defaultSettings;