From 2c90d16c4b0a9578fe16cae4b51e211e7697917a Mon Sep 17 00:00:00 2001 From: getsnoopy Date: Mon, 2 May 2022 16:43:22 -0500 Subject: [PATCH] Fix formatting of ETA This commit fixes the formatting of the estimated time of arrival to use the proper symbols as per the SI. --- lib/gui/app/pages/main/Flash.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gui/app/pages/main/Flash.tsx b/lib/gui/app/pages/main/Flash.tsx index 4fc526cabb..61be3abcac 100644 --- a/lib/gui/app/pages/main/Flash.tsx +++ b/lib/gui/app/pages/main/Flash.tsx @@ -141,7 +141,7 @@ const formatSeconds = (totalSeconds: number) => { const minutes = Math.floor(totalSeconds / 60); const seconds = Math.floor(totalSeconds - minutes * 60); - return `${minutes}m${seconds}s`; + return `${minutes} min ${seconds} s`; }; interface FlashStepProps {