From 32ab1cb000d3a4ed9f5e862b237fd8a5e599673d Mon Sep 17 00:00:00 2001 From: Exotic <118054752+extoci@users.noreply.github.com> Date: Tue, 8 Sep 2026 00:49:20 +0300 Subject: [PATCH 1/2] fix(web): use tabular numerals without monospace --- apps/web/src/components/Sidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/Sidebar.tsx b/apps/web/src/components/Sidebar.tsx index 63c7deca4c5e..5502d4588749 100644 --- a/apps/web/src/components/Sidebar.tsx +++ b/apps/web/src/components/Sidebar.tsx @@ -274,7 +274,7 @@ function WorkingDuration(props: { startedAt: string | null }) { }, [startedMs]); if (Number.isNaN(startedMs)) return null; return ( - + {formatWorkingDurationLabel(Date.now() - startedMs)} ); From dbc2f04127fb0790563139493892c03e7e48a71a Mon Sep 17 00:00:00 2001 From: Exotic <118054752+extoci@users.noreply.github.com> Date: Tue, 8 Sep 2026 01:17:00 +0300 Subject: [PATCH 2/2] this shouldn't even happen but ci is dumb --- apps/web/src/components/Sidebar.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/apps/web/src/components/Sidebar.tsx b/apps/web/src/components/Sidebar.tsx index dde6e39a0a0c..32931f7bfefc 100644 --- a/apps/web/src/components/Sidebar.tsx +++ b/apps/web/src/components/Sidebar.tsx @@ -281,11 +281,7 @@ function WorkingDuration(props: { startedAt: string | null }) { return () => window.clearInterval(id); }, [startedMs]); if (Number.isNaN(startedMs)) return null; - return ( - - {formatWorkingDurationLabel(Date.now() - startedMs)} - - ); + return {formatWorkingDurationLabel(Date.now() - startedMs)}; } const EMPTY_PROVIDER_ENTRIES: ReadonlyMap = new Map();