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:
parent
1be5584de9
commit
a11c1a16a3
1 changed files with 5 additions and 5 deletions
|
@ -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],
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue