Skip to content
Snippets Groups Projects
Verified Commit 84d5f84c authored by Dennis Collaris's avatar Dennis Collaris
Browse files

fix: remove reference of unmerged changes from !188

Introduced in splitting up !176
parent cafc195c
No related branches found
Tags v1.77.1
No related merge requests found
Pipeline #138099 passed
......@@ -53,7 +53,7 @@ export const NLPixi = (props: Props) => {
useEffect(() => {
update();
}, [globalConfig.currentTheme]);
}, [globalConfig.theme]);
const app = useMemo(
() =>
......@@ -326,7 +326,7 @@ export const NLPixi = (props: Props) => {
getBackgroundColor() {
// Colors corresponding to .bg-light class
return globalConfig.currentTheme === Theme.dark ? 0x121621 : 0xffffff;
return globalConfig.theme === Theme.dark ? 0x121621 : 0xffffff;
},
}));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment