File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
packages/web/src/app/[domain]/chat Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export default async function Page(props: PageProps) {
5353 const indexedRepos = repos . filter ( ( repo ) => repo . indexedAt !== undefined ) ;
5454
5555 return (
56- < >
56+ < div className = "flex flex-col h-screen w-screen" >
5757 < TopBar
5858 domain = { params . domain }
5959 homePath = { `/${ params . domain } /chat` }
@@ -87,6 +87,6 @@ export default async function Page(props: PageProps) {
8787 isChatReadonly = { isReadonly }
8888 />
8989 </ ResizablePanelGroup >
90- </ >
90+ </ div >
9191 )
9292}
Original file line number Diff line number Diff line change @@ -14,9 +14,7 @@ export default async function Layout({ children }: LayoutProps) {
1414 // @note : we use a navigation guard here since we don't support resuming streams yet.
1515 // @see : https://ai-sdk.dev/docs/ai-sdk-ui/chatbot-message-persistence#resuming-ongoing-streams
1616 < NavigationGuardProvider >
17- < div className = "flex flex-col h-screen w-screen" >
18- { children }
19- </ div >
17+ { children }
2018 < TutorialDialog isOpen = { ! isTutorialDismissed } />
2119 </ NavigationGuardProvider >
2220 )
You can’t perform that action at this time.
0 commit comments