Skip to content

Commit

Permalink
Fix: conversations grouping label (#8252)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraggle authored Oct 25, 2024
1 parent e8a7d6c commit 973410d
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 Year"].push(conversation);
groups["Last 12 Months"].push(conversation);
} else {
groups["Older"].push(conversation);
}
Expand Down

0 comments on commit 973410d

Please sign in to comment.