From df28d8351d42430f718ee2ea004b5a1f4727cb4e Mon Sep 17 00:00:00 2001 From: Farber Denis Date: Tue, 2 Aug 2022 12:02:23 +0300 Subject: [PATCH] fix(#ott2629): fixed time format for non us canada users --- src/features/MatchPage/components/MatchDescription/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/MatchPage/components/MatchDescription/index.tsx b/src/features/MatchPage/components/MatchDescription/index.tsx index 29846b33..a6142563 100644 --- a/src/features/MatchPage/components/MatchDescription/index.tsx +++ b/src/features/MatchPage/components/MatchDescription/index.tsx @@ -56,7 +56,7 @@ export const MatchDescription = ({ const localDate = format(parseDate(date), live ? 'HH:mm' : 'MMMM d, y') const changedTimeFormat = format(parseDate(date), - isChangedTimeFormat ? 'hh:mm aaa' : 'hh:mm') + isChangedTimeFormat ? 'hh:mm aaa' : 'HH:mm') return (