We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95f736a commit 4742402Copy full SHA for 4742402
1 file changed
src/app/(core)/(interact)/(stretched)/chats/[threadId]/layout.tsx
@@ -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