fix: remove ScrollView from main panel so popover auto-sizes to content

This commit is contained in:
SuperDooper
2026-05-08 23:10:22 +02:00
parent e4f55c80ee
commit 1160712e1b
-2
View File
@@ -40,7 +40,6 @@ struct ContentView: View {
.environmentObject(updater) .environmentObject(updater)
.transition(.move(edge: .trailing).combined(with: .opacity)) .transition(.move(edge: .trailing).combined(with: .opacity))
} else { } else {
ScrollView(.vertical, showsIndicators: false) {
VStack(spacing: 0) { VStack(spacing: 0) {
// Cards grid // Cards grid
if vm.limits.isEmpty { if vm.limits.isEmpty {
@@ -97,7 +96,6 @@ struct ContentView: View {
} }
} }
} }
}
.transition(.opacity) .transition(.opacity)
Divider().opacity(0.3) Divider().opacity(0.3)