From 9374a8e29b94081e07dccdbfe758d58ba8748a5b Mon Sep 17 00:00:00 2001 From: Zane Staggs Date: Wed, 3 Sep 2025 13:37:14 -0700 Subject: [PATCH] lower min width to 450 for small screens --- ui/desktop/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/desktop/src/main.ts b/ui/desktop/src/main.ts index 2eb10b05..e71cb167 100644 --- a/ui/desktop/src/main.ts +++ b/ui/desktop/src/main.ts @@ -596,7 +596,7 @@ const createChat = async ( y: mainWindowState.y, width: mainWindowState.width, height: mainWindowState.height, - minWidth: 750, + minWidth: 450, resizable: true, useContentSize: true, icon: path.join(__dirname, '../images/icon'),