Make code consistent with the comment above
parent
e96059337e
commit
0eb8d3f4d1
|
@ -26,7 +26,7 @@ const cssThemes = {
|
||||||
|
|
||||||
function getActiveThemes() {
|
function getActiveThemes() {
|
||||||
// We want to use `light` theme by default if it's not defined.
|
// We want to use `light` theme by default if it's not defined.
|
||||||
const theme = process.env.MATRIX_THEMES ?? 'dark';
|
const theme = process.env.MATRIX_THEMES ?? 'light';
|
||||||
const themes = theme.split(',').filter(x => x).map(x => x.trim()).filter(x => x);
|
const themes = theme.split(',').filter(x => x).map(x => x.trim()).filter(x => x);
|
||||||
return themes;
|
return themes;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue