From 1160712e1bc5ddb124b48cdf411bf1ab549b2896 Mon Sep 17 00:00:00 2001 From: SuperDooper <37051355+superdooper86@users.noreply.github.com> Date: Fri, 8 May 2026 23:10:22 +0200 Subject: [PATCH] fix: remove ScrollView from main panel so popover auto-sizes to content --- ClaudeChecker/ContentView.swift | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ClaudeChecker/ContentView.swift b/ClaudeChecker/ContentView.swift index 0f492b8..af41b33 100644 --- a/ClaudeChecker/ContentView.swift +++ b/ClaudeChecker/ContentView.swift @@ -40,8 +40,7 @@ struct ContentView: View { .environmentObject(updater) .transition(.move(edge: .trailing).combined(with: .opacity)) } else { - ScrollView(.vertical, showsIndicators: false) { - VStack(spacing: 0) { + VStack(spacing: 0) { // Cards grid if vm.limits.isEmpty { EmptyStateView() @@ -96,7 +95,6 @@ struct ContentView: View { .padding(.bottom, 8) } } - } } .transition(.opacity)