diff options
author | Eric Bailey <git@esb.lol> | 2024-09-20 10:50:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-20 10:50:33 -0500 |
commit | fa6f6f9e473a0dd731ea95210fbd66e0b8c0c283 (patch) | |
tree | 1c5166f9b31d3b4967fcf8cd8cdb969d2efa92cb /src/components/AppLanguageDropdown.tsx | |
parent | cd88cbeab83169410fff3245505b53122dfe28aa (diff) | |
download | voidsky-fa6f6f9e473a0dd731ea95210fbd66e0b8c0c283.tar.zst |
Language fixes (#5384)
* Add some comments * Decouple language settings * Normalize on read/write * Refactor * Support device locale on app startup * Cleanup, port to web * Clean up comments * Comment * Try not to mutate * Protect util handling, update test * Dedupe array values
Diffstat (limited to 'src/components/AppLanguageDropdown.tsx')
-rw-r--r-- | src/components/AppLanguageDropdown.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/components/AppLanguageDropdown.tsx b/src/components/AppLanguageDropdown.tsx index 02cd0ce2d..6170ab2e2 100644 --- a/src/components/AppLanguageDropdown.tsx +++ b/src/components/AppLanguageDropdown.tsx @@ -24,8 +24,6 @@ export function AppLanguageDropdown() { if (sanitizedLang !== value) { setLangPrefs.setAppLanguage(sanitizeAppLanguageSetting(value)) } - setLangPrefs.setPrimaryLanguage(value) - setLangPrefs.setContentLanguage(value) // reset feeds to refetch content resetPostsFeedQueries(queryClient) |