@ -10,7 +10,7 @@ export function useLocalStorage(key: string, initialValue: any) {
// Parse stored json or if none return initialValue
return item ? JSON.parse(item) : initialValue
} catch (error) {
// If error also return initialValue
// If an error also return initialValue
console.log(error)
return initialValue
}