diff --git a/front/components/assistant/conversation/SidebarMenu.tsx b/front/components/assistant/conversation/SidebarMenu.tsx index 258aeb99dd20..27ed6787c041 100644 --- a/front/components/assistant/conversation/SidebarMenu.tsx +++ b/front/components/assistant/conversation/SidebarMenu.tsx @@ -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); }