diff --git a/lib/core/utils.dart b/lib/core/utils.dart index 9f88d761..b8520784 100644 --- a/lib/core/utils.dart +++ b/lib/core/utils.dart @@ -172,7 +172,7 @@ String formatTimestamp(DateTime timestamp) { } // If the message is older than 7 days, show the full date - if (diff <= 7) { + if (diff <= 365) { return DateFormat('MMM dd').format(timestamp); // Nov 03 }