Skip to content

Commit 588b9f3

Browse files
authored
Fix scrolling (#7780)
1 parent fb02fef commit 588b9f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/components/features/chat/chat-message.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export function ChatMessage({
5757
onClick={handleCopyToClipboard}
5858
mode={isCopy ? "copied" : "copy"}
5959
/>
60-
<div className="text-sm overflow-auto break-words">
60+
<div className="text-sm break-words">
6161
<Markdown
6262
components={{
6363
code,

frontend/src/components/features/chat/expandable-message.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ export function ExpandableMessage({
189189
)}
190190
</div>
191191
{showDetails && (
192-
<div className="text-sm overflow-auto">
192+
<div className="text-sm">
193193
<Markdown
194194
components={{
195195
code,

0 commit comments

Comments
 (0)