From 66ca3e34a4eb200afcbcefa0c01a6838cd0819a1 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 15 Oct 2025 19:00:29 +0300 Subject: [PATCH] fix invalid tweaking to date string (#8415) --- src/components/live/GoLiveDialog.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/components/live/GoLiveDialog.tsx b/src/components/live/GoLiveDialog.tsx index 437c3eacc5..44c604cde7 100644 --- a/src/components/live/GoLiveDialog.tsx +++ b/src/components/live/GoLiveDialog.tsx @@ -56,10 +56,7 @@ function DialogInner({profile}: {profile: bsky.profile.AnyProfileView}) { const date = new Date() date.setMinutes(date.getMinutes() + offset) - return i18n - .date(date, {hour: 'numeric', minute: '2-digit', hour12: true}) - .toLocaleUpperCase() - .replace(' ', '') + return i18n.date(date, {hour: 'numeric', minute: '2-digit', hour12: true}) }, [tick, i18n], )