Skip to content

Commit

Permalink
fix: overflow issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Quiddlee committed Dec 23, 2023
1 parent c1bd839 commit 0786aef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ResponseViewer/ResponseViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const ResponseViewer: FC<ResponseViewerProps> = ({ onResponseClose, isHidden })
<div
data-testid="response-viewer"
ref={rootRef}
className="h-full w-full justify-between overflow-y-scroll rounded-4xl bg-surface-container py-7 pl-7 pr-4"
className="h-full w-full justify-between overflow-hidden overflow-y-scroll rounded-4xl bg-surface-container py-7 pl-7 pr-4"
>
<article className="h-fit w-fit pr-10">
<pre className="h-full w-full whitespace-break-spaces">{PLACEHOLDER_TEXT}</pre>
Expand Down

0 comments on commit 0786aef

Please sign in to comment.