From ebbfcc2196d165a14823a464c46658f909b71c15 Mon Sep 17 00:00:00 2001 From: Konsta Purtsi Date: Fri, 26 Apr 2024 11:18:22 +0300 Subject: [PATCH] fix: showcard timestamps wrap on Firefox --- components/showcard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/showcard.tsx b/components/showcard.tsx index fb65bff..0c40d6c 100644 --- a/components/showcard.tsx +++ b/components/showcard.tsx @@ -55,8 +55,8 @@ const Time = ({ start, end }: TimeProps) => { const endTime = format(new Date(end), 'p', { locale: fi }); return ( -

- {startTime} - {endTime} +

+ {startTime} – {endTime}

); };