tangled mirror of catsky-🐱 Soothing soft social-app fork with all the niche toggles! (Unofficial); for issues and PRs please put them on github:NekoDrone/catsky-social

fix invalid tweaking to date string (#8415)

authored by samuel.fm and committed by GitHub 66ca3e34 4788106f

Changed files
+1 -4
src
components
+1 -4
src/components/live/GoLiveDialog.tsx
··· 56 56 57 57 const date = new Date() 58 58 date.setMinutes(date.getMinutes() + offset) 59 - return i18n 60 - .date(date, {hour: 'numeric', minute: '2-digit', hour12: true}) 61 - .toLocaleUpperCase() 62 - .replace(' ', '') 59 + return i18n.date(date, {hour: 'numeric', minute: '2-digit', hour12: true}) 63 60 }, 64 61 [tick, i18n], 65 62 )