Show latest conversations on the top (#46)
This commit is contained in:
parent
0d6ff739a2
commit
b80f39925c
|
@ -38,7 +38,7 @@ export const Conversations: FC<Props> = ({ loading, conversations, selectedConve
|
||||||
}, [isRenaming, isDeleting]);
|
}, [isRenaming, isDeleting]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col space-y-2 w-full px-2">
|
<div className="flex flex-col-reverse gap-2 w-full px-2">
|
||||||
{conversations.map((conversation, index) => (
|
{conversations.map((conversation, index) => (
|
||||||
<button
|
<button
|
||||||
key={index}
|
key={index}
|
||||||
|
|
Loading…
Reference in New Issue