From 2f69987742a7d47fb3a6cf5e50c4e4f8b7ecbe52 Mon Sep 17 00:00:00 2001 From: Conrad Kramer Date: Tue, 31 Mar 2026 13:46:11 -0700 Subject: [PATCH] Fix iOS config sheet width --- Apple/UI/BurrowView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Apple/UI/BurrowView.swift b/Apple/UI/BurrowView.swift index e595475..b075279 100644 --- a/Apple/UI/BurrowView.swift +++ b/Apple/UI/BurrowView.swift @@ -399,7 +399,9 @@ private struct ConfigurationSheetView: View { } } } + #if os(macOS) .frame(minWidth: 520, minHeight: 620) + #endif .onAppear { runAutomationIfNeeded() }