Skip to content

Commit ae31076

Browse files
committed
Resolves #133
1 parent b0d5347 commit ae31076

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/shy-apes-play.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"ai-elements": patch
3+
---
4+
5+
Fix duplicate overflows in Conversation element

packages/elements/src/conversation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export type ConversationProps = ComponentProps<typeof StickToBottom>;
1111

1212
export const Conversation = ({ className, ...props }: ConversationProps) => (
1313
<StickToBottom
14-
className={cn("relative flex-1 overflow-y-auto", className)}
14+
className={cn("relative flex-1 overflow-y-hidden", className)}
1515
initial="smooth"
1616
resize="smooth"
1717
role="log"

0 commit comments

Comments
 (0)