#useLocalStorage custom hook show errors in my console

5 messages · Page 1 of 1 (latest)

torn cargo
#
import { useState } from "react"

export const useLocalStorage = (key, initialValue) => {
  const [storedValue, setStoredValue] = useState(() => {
    try {
      const item = window.localStorage.getItem(key)
      return item ? JSON.parse(item) : initialValue
    } catch (err) {
      console.error(err)
      return initialValue
    }
  })

  const setValue = (value) => {
    try {
      const valueToStore =
        value instanceof Function ? value(storedValue) : value
      setStoredValue(valueToStore)
      window?.localStorage.setItem(key, JSON.stringify(valueToStore))
    } catch (err) {
      console.error(err.message)
    }
  }
  return [storedValue, setValue]
}

it keep saying window is not defined even tho i use it on client components

azure moatBOT
#

🔎 This post has been indexed in our web forum and will be seen by search engines so other users can find it outside Discord

🕵️ Your user profile is private by default and won't be visible to users outside Discord, if you want to be visible in the web forum you can add the "Public Profile" role in id:customize

✅ You can mark a message as the answer for your post with Right click -> Apps -> Mark Solution
(if you don't see the option, try refreshing Discord with Ctrl + R)

tight glen
#

you still need useEffect

torn cargo