Skip to content

Commit

Permalink
Revert "Fix: conversations grouping label (#8252)" (#8256)
Browse files Browse the repository at this point in the history
This reverts commit 973410d.
  • Loading branch information
PopDaph authored Oct 25, 2024
1 parent 31b7b52 commit 8f0f275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front/components/assistant/conversation/SidebarMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export function AssistantSidebarMenu({ owner }: AssistantSidebarMenuProps) {
} else if (createdDate.isSameOrAfter(lastMonth)) {
groups["Last Month"].push(conversation);
} else if (createdDate.isSameOrAfter(lastYear)) {
groups["Last 12 Months"].push(conversation);
groups["Last Year"].push(conversation);
} else {
groups["Older"].push(conversation);
}
Expand Down

0 comments on commit 8f0f275

Please sign in to comment.