chore: Update dependencies and fix import paths
This commit is contained in:
parent
3b737a078a
commit
81c5e30fda
46 changed files with 1626 additions and 371 deletions
|
@ -71,10 +71,10 @@ const Page = () => {
|
|||
)}
|
||||
{chats.length > 0 && (
|
||||
<div className="flex flex-col pt-16 lg:pt-24">
|
||||
{chats.map((chat, i) => (
|
||||
{chats.map((chat, index) => (
|
||||
<div
|
||||
className="flex flex-col space-y-4 border-b border-white-200 dark:border-dark-200 py-6 lg:mx-4"
|
||||
key={i}
|
||||
key={index}
|
||||
>
|
||||
<Link
|
||||
href={`/c/${chat.id}`}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue