Next.js Discord

Discord Forum

guys can someone help me? so uhm when i'm changing the "chat" localstorage state, it only updates on

Unanswered
Abyssinian posted this in #help-forum
Open in Discord
AbyssinianOP
guys can someone help me? so uhm when i'm changing the "chat" localstorage state, it only updates on a page refresh even tho i have an eventlistener that listens to it
const [chat, setChat] = useState(() => {
return localStorage.getItem("chat") === null ? true : localStorage.getItem("chat") === "true";
});

window.addEventListener('storage', () => {
const chatState = localStorage.getItem("chat") === null || localStorage.getItem("chat") === "true";
setChat(chatState);
});

0 Replies