disabled overflow on base layout

This commit is contained in:
Lucas Oliveira 2025-09-18 17:46:23 -03:00
parent eea41c04d9
commit 4cbdf6ed19
2 changed files with 3 additions and 3 deletions

View file

@ -38,7 +38,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<body <body
className={`${inter.variable} ${jetbrainsMono.variable} ${chivo.variable} antialiased`} className={`${inter.variable} ${jetbrainsMono.variable} ${chivo.variable} antialiased h-full w-full overflow-hidden`}
> >
<ThemeProvider <ThemeProvider
attribute="class" attribute="class"

View file

@ -52,14 +52,14 @@ function OnboardingPage() {
const handleComplete = () => { const handleComplete = () => {
updateFlowSettingMutation.mutate({ updateFlowSettingMutation.mutate({
llm_model: settings.agent?.llm_model, llm_model: settings.agent?.llm_model,
embedding_model: settings.ingest?.embedding_model, embedding_model: settings.knowledge?.embedding_model,
system_prompt: settings.agent?.system_prompt, system_prompt: settings.agent?.system_prompt,
}); });
}; };
return ( return (
<div <div
className="min-h-dvh relative flex gap-5 flex-col items-center justify-center bg-background p-4" className="min-h-dvh w-full flex gap-5 flex-col items-center justify-center bg-background p-4"
style={{ style={{
backgroundImage: "url('/images/background.png')", backgroundImage: "url('/images/background.png')",
backgroundSize: "cover", backgroundSize: "cover",