Change property name

This commit is contained in:
MD. Ariful Alam 2021-08-27 00:54:53 +06:00
parent 19e158683d
commit bb26277629
2 changed files with 3 additions and 3 deletions

View File

@ -6,8 +6,8 @@ export const getThemeValue = () => {
return config.themeConfig.default;
}
if (localStorage.hasOwnProperty('theme')) {
let theme = localStorage.getItem('theme');
if (localStorage.hasOwnProperty('ezprofileTheme')) {
let theme = localStorage.getItem('ezprofileTheme');
return theme;
}

View File

@ -11,7 +11,7 @@ export const themeSlice = createSlice({
state = action.payload;
document.documentElement.setAttribute('data-theme', state);
localStorage.setItem('theme', state);
localStorage.setItem('ezprofileTheme', state);
return state;
}