mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 01:05:42 +03:00
Make code consistent with the comment above
This commit is contained in:
parent
e96059337e
commit
0eb8d3f4d1
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ const cssThemes = {
|
|||
|
||||
function getActiveThemes() {
|
||||
// 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);
|
||||
return themes;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue