From 41cf741a357f53107833ca62c653e39e287015aa Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Fri, 21 Feb 2025 16:23:49 +0100 Subject: [PATCH] fix: don't break button width --- packages/trace-viewer/src/ui/errorsTab.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/trace-viewer/src/ui/errorsTab.tsx b/packages/trace-viewer/src/ui/errorsTab.tsx index d7b9ac7eba..a5d9a17aa6 100644 --- a/packages/trace-viewer/src/ui/errorsTab.tsx +++ b/packages/trace-viewer/src/ui/errorsTab.tsx @@ -72,7 +72,7 @@ const CopyPromptButton: React.FC<{ value={prompt} description='Copy as Prompt' copiedDescription={<>Copied } - style={{ width: '90px', justifyContent: 'center' }} + style={{ width: '120px', justifyContent: 'center' }} /> ); };