From 28cfa954195b22616b6fdfb17b83e78b47a9e605 Mon Sep 17 00:00:00 2001 From: Jordi Mas Date: Tue, 26 Mar 2024 07:45:45 +0100 Subject: [PATCH] Update apps/worldclock/app.js Co-authored-by: Rob Pilling --- 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 16ac04df2..48326c2cd 100644 --- a/apps/worldclock/app.js +++ b/apps/worldclock/app.js @@ -118,7 +118,7 @@ function draw() { if (offsets.length === 1) { // For a single secondary timezone, draw it bigger and drop time zone to second line g.setFont(font, secondaryTimeFontSize); - g.drawString(`${time}`, xyCenter, yposTime2, true); + g.drawString(time, xyCenter, yposTime2, true); g.setFont(font, secondaryTimeZoneFontSize); g.drawString(offset[OFFSET_TIME_ZONE], xyCenter, yposTime2 + 30, true);