This commit is contained in:
NotII
2025-03-09 04:18:39 +00:00
parent b45a4e2e01
commit c08df8919d
3 changed files with 41 additions and 47 deletions

View File

@@ -11,9 +11,7 @@ export const metadata: Metadata = {
export default function ChatDetailPage({ params }: { params: { id: string } }) {
return (
<Dashboard>
<div className="h-full w-full">
<ChatDetail chatId={params.id} />
</div>
<ChatDetail chatId={params.id} />
</Dashboard>
);
}