From 11a16b81ece3894b3ad91d06ebf8f2d9b4fbc20c Mon Sep 17 00:00:00 2001 From: Jared Palmer Date: Sat, 30 Nov 2024 16:44:40 -0500 Subject: [PATCH] Fix import for sanity sake --- app/(chat)/chat/[id]/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/(chat)/chat/[id]/page.tsx b/app/(chat)/chat/[id]/page.tsx index acf5da3d1..1ed6d61d1 100644 --- a/app/(chat)/chat/[id]/page.tsx +++ b/app/(chat)/chat/[id]/page.tsx @@ -2,7 +2,7 @@ import { cookies } from 'next/headers'; import { notFound } from 'next/navigation'; import { auth } from '@/app/(auth)/auth'; -import { Chat as PreviewChat } from '@/components/chat'; +import { Chat } from '@/components/chat'; import { DEFAULT_MODEL_NAME, models } from '@/lib/ai/models'; import { getChatById, getMessagesByChatId } from '@/lib/db/queries'; import { convertToUIMessages } from '@/lib/utils'; @@ -37,7 +37,7 @@ export default async function Page(props: { params: Promise<{ id: string }> }) { DEFAULT_MODEL_NAME; return ( -