1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-21 20:44:18 +00:00

🧊 Renamed inner value variable to val

This commit is contained in:
Steffo 2021-05-23 18:25:17 +02:00
parent 1be5584de9
commit a11c1a16a3
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -35,10 +35,10 @@ export default function useLocalStorageState(key, def) {
* Save a value to the {@link localStorage}.
*/
const save = useCallback(
(value) => {
val => {
if(localStorage) {
console.debug(`Saving ${key} to localStorage...`)
localStorage.setItem(key, JSON.stringify(value))
localStorage.setItem(key, JSON.stringify(val))
}
else {
console.warn(`Can't save ${key}; localStorage doesn't seem to be available...`)
@ -51,9 +51,9 @@ export default function useLocalStorageState(key, def) {
* Set `value` and save it to the {@link localStorage}.
*/
const setAndSave = useCallback(
(value) => {
setValue(value)
save(value)
val => {
setValue(val)
save(val)
},
[save],
)