From 31eda84ea983b870933ff5b9df72b17864561894 Mon Sep 17 00:00:00 2001 From: chenhang Date: Thu, 16 Jul 2026 15:29:46 +0800 Subject: [PATCH] test(chat): enable resizes-content keyboard experiment --- src/app/chat/layout.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/chat/layout.tsx b/src/app/chat/layout.tsx index 275a186c..048d0789 100644 --- a/src/app/chat/layout.tsx +++ b/src/app/chat/layout.tsx @@ -1,7 +1,12 @@ +import type { Viewport } from "next"; import type { ReactNode } from "react"; import { ChatRouteProviders } from "@/providers/chat-route-providers"; +export const viewport: Viewport = { + interactiveWidget: "resizes-content", +}; + export default function ChatLayout({ children }: { children: ReactNode }) { return {children}; }