This commit is contained in:
marko-kraemer 2025-08-22 02:56:50 -07:00
parent 63121d8ed6
commit 45d238aa62
1 changed files with 1 additions and 2 deletions

View File

@ -153,8 +153,7 @@ export const groupThreadsByDate = (
let dateGroup: string;
if (diffInDays === 0) {
// Skip today's threads - don't show anything for "TODAY"
return;
dateGroup = 'Today';
} else if (diffInDays === 1) {
dateGroup = 'Yesterday';
} else if (diffInDays <= 7) {