Skip to content

Commit

Permalink
Fix minor styling issues (#489)
Browse files Browse the repository at this point in the history
  • Loading branch information
homanp authored Nov 3, 2023
1 parent 8ad9dae commit 6de1de7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/ui/app/agents/[agentId]/settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const formSchema = z.object({
description: z.string().nonempty({
message: "Description is required",
}),
initialMessage: z.string(),
initialMessage: z.string().nullable(),
llms: z.string(),
isActive: z.boolean().default(true),
llmModel: z.string().nonempty({
Expand Down
2 changes: 1 addition & 1 deletion libs/ui/app/container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function RootLayout({ children, session }: RootLayoutProps) {
return (
<section className="flex h-screen">
<Sidebar />
<div className="flex-1 overflow-hidden">{children}</div>
<div className="flex-1 overflow-auto">{children}</div>
</section>
)
}

1 comment on commit 6de1de7

@vercel
Copy link

@vercel vercel bot commented on 6de1de7 Nov 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.