Skip to content

Commit 4742402

Browse files
committed
fix chat thread noindex metadata
1 parent 95f736a commit 4742402

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

  • src/app/(core)/(interact)/(stretched)/chats/[threadId]
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { noindexFollowMetadata } from "@/utils/seo";
2+
import type { Metadata } from "next";
3+
import type { ReactNode } from "react";
4+
5+
export const metadata: Metadata = noindexFollowMetadata;
6+
7+
export default function ChatThreadLayout({
8+
children,
9+
}: {
10+
children: ReactNode;
11+
}) {
12+
return children;
13+
}

0 commit comments

Comments
 (0)