diff --git a/components/Sidebar/Conversations.tsx b/components/Sidebar/Conversations.tsx index 48578b3..c4c2cdd 100644 --- a/components/Sidebar/Conversations.tsx +++ b/components/Sidebar/Conversations.tsx @@ -13,8 +13,8 @@ interface Props { export const Conversations: FC = ({ loading, conversations, selectedConversation, onSelectConversation, onDeleteConversation, onUpdateConversation }) => { return ( -
- {conversations.map((conversation, index) => ( +
+ {conversations.slice().reverse().map((conversation, index) => (