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)
.transition(.move(edge: .trailing).combined(with: .opacity))
} else {
ScrollView(.vertical, showsIndicators: false) {
VStack(spacing: 0) {
// Cards grid
if vm.limits.isEmpty {
@@ -97,7 +96,6 @@ struct ContentView: View {
}
}
}
}
.transition(.opacity)
Divider().opacity(0.3)