Skip to content

Commit

Permalink
fix(settings)
Browse files Browse the repository at this point in the history
  • Loading branch information
NoodleOfDeath committed Oct 7, 2023
1 parent f6c83b3 commit 0038d2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/src/client/contexts/session/SessionContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ export function SessionContextProvider({ children }: React.PropsWithChildren) {

// recap state
setReadRecaps(await getPreference('readRecaps'));
setRecapTranslations(await getPreference('recapTranslations'));
setRecapTranslations(locale !== getLocale() ? {} : await getPreference('recapTranslations'));

// publisher states
setFollowedPublishers(await getPreference('followedPublishers'));
Expand Down

0 comments on commit 0038d2b

Please sign in to comment.