Skip to content

Commit

Permalink
fix/library_settings_screen_title_update_on_language_change (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
schroda authored May 1, 2023
1 parent b906509 commit 548b22d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/settings/LibrarySettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default function LibrarySettings() {
useEffect(() => {
setTitle(t('library.settings.title'));
setAction(null);
}, []);
}, [t]);

const { data: categories, loading, error: requestError, mutate } = useQuery<ICategory[]>('/api/v1/category/');

Expand Down

0 comments on commit 548b22d

Please sign in to comment.