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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
web/app/(app)/dashboard/(components)/message-history.tsx
|
|
|
@ -546,7 +546,7 @@ function MessageCard({ message, type, device }) { |
|
|
|
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 ( |
|
|
|
<Card |
|
|
|
|