Skip to content

Commit 89b44cd

Browse files
committed
Fix double overflow issue on homepage
1 parent b46781c commit 89b44cd

File tree

1 file changed

+2
-2
lines changed
  • apps/website/app/[lang]/(home)/components

1 file changed

+2
-2
lines changed

apps/website/app/[lang]/(home)/components/demo.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ export const Demo = () => {
105105
}, [isInView]);
106106

107107
return (
108-
<Conversation className="h-[600px] overflow-y-auto rounded-sm border bg-background">
109-
<ConversationContent>
108+
<Conversation>
109+
<ConversationContent className="h-[600px] overflow-y-auto rounded-sm border bg-background">
110110
<div className="mx-auto w-full max-w-prose p-12" ref={ref}>
111111
<Streamdown
112112
animated

0 commit comments

Comments
 (0)