Skip to content

Commit

Permalink
fix/lint-warning
Browse files Browse the repository at this point in the history
  • Loading branch information
setchy committed Jul 28, 2024
1 parent ea350b1 commit b90c5f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/context/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export const AppProvider = ({ children }: { children: ReactNode }) => {
const newSettings = { ...settings, ...defaultFilters };
setSettings(newSettings);
saveState({ auth, settings: newSettings });
}, [auth]);
}, [auth, settings]);

const resetSettings = useCallback(() => {
setSettings(defaultSettings);
Expand Down

0 comments on commit b90c5f2

Please sign in to comment.