We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0d5347 commit ae31076Copy full SHA for ae31076
.changeset/shy-apes-play.md
@@ -0,0 +1,5 @@
1
+---
2
+"ai-elements": patch
3
4
+
5
+Fix duplicate overflows in Conversation element
packages/elements/src/conversation.tsx
@@ -11,7 +11,7 @@ export type ConversationProps = ComponentProps<typeof StickToBottom>;
11
12
export const Conversation = ({ className, ...props }: ConversationProps) => (
13
<StickToBottom
14
- className={cn("relative flex-1 overflow-y-auto", className)}
+ className={cn("relative flex-1 overflow-y-hidden", className)}
15
initial="smooth"
16
resize="smooth"
17
role="log"
0 commit comments