From 56ee371d6c4a1af81d95cebab009811ab505cfd8 Mon Sep 17 00:00:00 2001 From: Rakov Roman Date: Wed, 17 Aug 2022 13:58:20 +0300 Subject: [PATCH] fix(#2639): bug fixing for match page mobile --- 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 a248c7c0..f9f074e6 100644 --- a/src/features/MatchPage/components/MatchDescription/index.tsx +++ b/src/features/MatchPage/components/MatchDescription/index.tsx @@ -62,7 +62,7 @@ export const MatchDescription = () => { } = profile const isChangedTimeFormat = includes(['US', 'CA'], user?.profile.country_code) - const localDate = format(parseDate(date), 'MMMM d, y') + const localDate = format(parseDate(date), 'MMM d, y') const changedTimeFormat = format(parseDate(date), isChangedTimeFormat ? 'h:mm a' : 'HH:mm')