From 41ac5c69710e5ffd0f51f2823ad3d64a04319580 Mon Sep 17 00:00:00 2001 From: Matt Van Horn <455140+mvanhorn@users.noreply.github.com> Date: Tue, 7 Apr 2026 02:56:50 -0700 Subject: [PATCH 1/2] fix: constrain bug report modal to viewport height Add maxHeight: 90vh to the Modal and its inner Box container so the bug report screen doesn't overflow beyond the viewport, which was causing the close button and header text to be cropped off. Fixes #629 --- src/app/features/bug-report/BugReportModal.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/features/bug-report/BugReportModal.tsx b/src/app/features/bug-report/BugReportModal.tsx index 1babed978..168d7b972 100644 --- a/src/app/features/bug-report/BugReportModal.tsx +++ b/src/app/features/bug-report/BugReportModal.tsx @@ -233,8 +233,8 @@ function BugReportModal() { escapeDeactivates: stopPropagation, }} > - - + +
Date: Tue, 7 Apr 2026 12:26:20 -0700 Subject: [PATCH 2/2] docs: add changeset for bug report modal fix --- .changeset/fix-bug-report-modal-overflow.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/fix-bug-report-modal-overflow.md diff --git a/.changeset/fix-bug-report-modal-overflow.md b/.changeset/fix-bug-report-modal-overflow.md new file mode 100644 index 000000000..c37f218a7 --- /dev/null +++ b/.changeset/fix-bug-report-modal-overflow.md @@ -0,0 +1,5 @@ +--- +default: patch +--- + +Constrain bug report modal to viewport height to prevent overflow.