Browse Source

Merge pull request #93 from vernu/fix-status-display-cutoff-date

update message status display cut-off date to Jun 5
pull/94/head
Israel Abebe 9 months ago
committed by GitHub
parent
commit
60bcd691c8
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      web/app/(app)/dashboard/(components)/message-history.tsx

2
web/app/(app)/dashboard/(components)/message-history.tsx

@ -546,7 +546,7 @@ function MessageCard({ message, type, device }) {
year: 'numeric', year: 'numeric',
}) })
const shouldShowStatus = device?.appVersionCode >= 14 && new Date(message?.createdAt) > new Date('2025-04-11')
const shouldShowStatus = device?.appVersionCode >= 14 && new Date(message?.createdAt) > new Date('2025-06-05')
return ( return (
<Card <Card

Loading…
Cancel
Save