Skip to content

Commit 420b961

Browse files
authored
Update useLocalStorage.ts
Signed-off-by: viktorking7 <[email protected]>
1 parent e8af6dc commit 420b961

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/dashboard/src/@/hooks/useLocalStorage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export function useLocalStorage<TType>(
1010
) {
1111
const [value, _setValue] = useState<TType>(serverSideFallback);
1212

13-
// FIXME: ideally we do not need localstorage like this, alernatively we move this into use-query and use-mutation to invalidate etc
13+
// FIXME: ideally we do not need localstorage like this, alternatively we move this into use-query and use-mutation to invalidate etc
1414
// eslint-disable-next-line no-restricted-syntax
1515
useEffect(() => {
1616
try {

0 commit comments

Comments
 (0)