From 295283bf7f842ea1b3ef832c698fb22f425a93fc Mon Sep 17 00:00:00 2001 From: CostasAK Date: Thu, 25 Jul 2024 20:42:58 +0200 Subject: [PATCH] fix: say started instead of starts when event is currently ongoing --- src/components/timer.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/timer.tsx b/src/components/timer.tsx index eea42a0..a066137 100644 --- a/src/components/timer.tsx +++ b/src/components/timer.tsx @@ -132,7 +132,7 @@ export function Timer({ timestamp={nextStart} now={now} conditions="future" - prefix={end ? "Starts" : ""} + prefix={end ? (isOngoing ? "Started" : "Starts") : ""} />