fixes
This commit is contained in:
parent
79664ab361
commit
a4d2d9c139
1 changed files with 2 additions and 2 deletions
|
|
@ -82,7 +82,7 @@ onMounted(() => {
|
||||||
try {
|
try {
|
||||||
applyPreferredColorScheme(selectedTheme.value);
|
applyPreferredColorScheme(selectedTheme.value);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(e);
|
console.debug(e);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
@ -90,7 +90,7 @@ watch(selectedTheme, (value) => {
|
||||||
try {
|
try {
|
||||||
applyPreferredColorScheme(value);
|
applyPreferredColorScheme(value);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(e);
|
console.debug(e);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue