Skip to content

Commit

Permalink
fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mkue committed Nov 22, 2023
1 parent 3bcfcd1 commit dd8f1b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ export default function Page() {

useEffect(() => {
redirect('./finances/' + currency?.toLowerCase());
}, []);
}, [currency]);
}
2 changes: 1 addition & 1 deletion website/src/app/context-providers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function AnalyticsProviderWrapper({ children }: PropsWithChildren) {
setConsent(getAnalyticsCookieConsent('denied'));
}
}
}, [allowTracking]);
}, [app, allowTracking]);

return (
<>
Expand Down

0 comments on commit dd8f1b9

Please sign in to comment.