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
+1 -3
View File
@@ -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)