mirror of
https://github.com/NohamR/gitprofile.git
synced 2026-05-25 12:27:17 +00:00
Change property name
This commit is contained in:
@@ -6,8 +6,8 @@ export const getThemeValue = () => {
|
|||||||
return config.themeConfig.default;
|
return config.themeConfig.default;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (localStorage.hasOwnProperty('theme')) {
|
if (localStorage.hasOwnProperty('ezprofileTheme')) {
|
||||||
let theme = localStorage.getItem('theme');
|
let theme = localStorage.getItem('ezprofileTheme');
|
||||||
return theme;
|
return theme;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ export const themeSlice = createSlice({
|
|||||||
state = action.payload;
|
state = action.payload;
|
||||||
|
|
||||||
document.documentElement.setAttribute('data-theme', state);
|
document.documentElement.setAttribute('data-theme', state);
|
||||||
localStorage.setItem('theme', state);
|
localStorage.setItem('ezprofileTheme', state);
|
||||||
|
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user