10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 751214a commit c97b669Copy full SHA for c97b669
client-src/utils/log.js
@@ -27,8 +27,8 @@ const logEnabledFeatures = (features) => {
27
let logString = "Server started:";
28
29
// Server started: Hot Module Replacement enabled, Live Reloading enabled, Overlay disabled.
30
- for (const [key, value] of Object.entries(features)) {
31
- logString += ` ${key} ${value ? "enabled" : "disabled"},`;
+ for (const key of Object.keys(features)) {
+ logString += ` ${key} ${features[key] ? "enabled" : "disabled"},`;
32
}
33
// replace last comma with a period
34
logString = logString.slice(0, -1).concat(".");
0 commit comments