From bb63463ac81be3f1eace732b01f3ab7c920fe091 Mon Sep 17 00:00:00 2001 From: Roland Tannous Date: Fri, 10 Apr 2026 05:06:20 +0000 Subject: [PATCH] fix: copy button hidden by overflow clip on code snippets --- .../frontend/src/features/chat/chat-page.tsx | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/studio/frontend/src/features/chat/chat-page.tsx b/studio/frontend/src/features/chat/chat-page.tsx index 9eb578902d..f378264017 100644 --- a/studio/frontend/src/features/chat/chat-page.tsx +++ b/studio/frontend/src/features/chat/chat-page.tsx @@ -112,23 +112,25 @@ function HighlightedSnippet({ // changes (e.g. the API key). Forcing a remount keyed on the source string // guarantees the displayed snippet always matches the latest props. return ( -
+
- - {markdown} - +
+ + {markdown} + +
); }