From c3c47f170cc7d50247b1975131cb16985434ac1d Mon Sep 17 00:00:00 2001 From: Paulo Pinto Date: Wed, 18 Aug 2021 17:12:36 +0100 Subject: [PATCH] Improve phrasing --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index 1f6bff41a2..c0ae8fde28 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -25,7 +25,7 @@ const cssThemes = { }; function getActiveThemes() { - // We want to use `light` theme by default if it's not defined. + // Default to `light` theme when the MATRIX_THEMES environment variable is not defined. const theme = process.env.MATRIX_THEMES ?? 'light'; const themes = theme.split(',').filter(x => x).map(x => x.trim()).filter(x => x); return themes;