From 184e29a605c56cbf7015508da4b5f6cb17fe0da8 Mon Sep 17 00:00:00 2001 From: Tofik Hasanov <72318342+tofikwest@users.noreply.github.com> Date: Thu, 12 Mar 2026 16:02:40 -0400 Subject: [PATCH] fix(app): prevent integration dialog content from overflowing modal (#2292) Long setup instructions (curl commands) and help text were escaping the dialog bounds. Add word-breaking, overflow control, and scrollable body. --- .../integrations/ConnectIntegrationDialog.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/app/src/components/integrations/ConnectIntegrationDialog.tsx b/apps/app/src/components/integrations/ConnectIntegrationDialog.tsx index f04b146fd..a6d28f972 100644 --- a/apps/app/src/components/integrations/ConnectIntegrationDialog.tsx +++ b/apps/app/src/components/integrations/ConnectIntegrationDialog.tsx @@ -651,8 +651,8 @@ export function ConnectIntegrationDialog({ )} {provider?.setupInstructions && ( -
{provider.setupInstructions}
+{provider.setupInstructions}
{field.helpText}
+{field.helpText}
)} {errors[field.id] &&{errors[field.id]}
}