diff --git a/js/utils.js b/js/utils.js index f459f791..f94c763e 100644 --- a/js/utils.js +++ b/js/utils.js @@ -33,7 +33,7 @@ export const parseViscolors = text => { if (matches) { colors[i] = `rgb(${matches.slice(1, 4).join(",")})`; } else { - console.error("Error in VISCOLOR.TXT on line", i); + console.error(`Error in VISCOLOR.TXT on line ${i}`); } } return colors;