Skip to content

Commit

Permalink
fix: remove forgotten logical OR
Browse files Browse the repository at this point in the history
  • Loading branch information
nshenderov committed Oct 8, 2024
1 parent d0655de commit f36da65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/src/utils/localStorage.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ export const getPreferedLanguage = () => {
};

export const getProfileTheme = () => {
const theme = localStorage.getItem(STORAGE_KEYS.PROFILE_THEME) || 'en';
const theme = localStorage.getItem(STORAGE_KEYS.PROFILE_THEME);
return theme;
};

0 comments on commit f36da65

Please sign in to comment.