From 88d3d68687e9e7e10db934b4400db12a00c3101b Mon Sep 17 00:00:00 2001 From: Jordi Mas Date: Tue, 26 Mar 2024 07:54:29 +0100 Subject: [PATCH] Simpler string processing --- apps/worldclock/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/worldclock/app.js b/apps/worldclock/app.js index 48326c2cd..4207566ec 100644 --- a/apps/worldclock/app.js +++ b/apps/worldclock/app.js @@ -136,7 +136,7 @@ function draw() { true ); g.setFontAlign(1, 0); - g.drawString(`${time}`, xcol2, yposWorld + index * 15, true); + g.drawString(time, xcol2, yposWorld + index * 15, true); } });