From d798875a1f4fe06bea3c38c94092f37f0d8f66cb Mon Sep 17 00:00:00 2001 From: Isaiah Inuwa Date: Tue, 11 Nov 2025 13:18:47 -0600 Subject: [PATCH] Increase modal height to remove scroll bars --- apps/desktop/src/platform/popup-modal-styles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src/platform/popup-modal-styles.ts b/apps/desktop/src/platform/popup-modal-styles.ts index e1d3bb566f5..2a9273adb4f 100644 --- a/apps/desktop/src/platform/popup-modal-styles.ts +++ b/apps/desktop/src/platform/popup-modal-styles.ts @@ -4,7 +4,7 @@ import { WindowState } from "./models/domain/window-state"; // change as needed, however limited by mainwindow minimum size const popupWidth = 600; -const popupHeight = 600; +const popupHeight = 620; type Position = { x: number; y: number };