diff --git a/client/src/components/Home.tsx b/client/src/components/Home.tsx index 1a56f26..430501b 100644 --- a/client/src/components/Home.tsx +++ b/client/src/components/Home.tsx @@ -32,7 +32,7 @@ const useUniqEvents = () => { const Home = () => { const filterDifficulty = localStorage.getItem("filterDifficulty") || DEFAULT_DIFFICULTY; const [sortByTime, setSortByTime] = useState(localStorage.getItem('sortBy') !== 'false'); - const [setAnon, setSetAnon] = useState(localStorage.getItem('anonMode') !== 'false'); + const [setAnon, setSetAnon] = useState(localStorage.getItem('anonMode') !== 'true'); const {noteEvents, metadataEvents } = useUniqEvents(); const [delayedSort, setDelayedSort] = useState(false)