Fix connection card background on iOS

This commit is contained in:
世界
2025-12-04 11:44:31 +08:00
parent 7c8863b53a
commit c3c9284964
2 changed files with 62 additions and 58 deletions
@@ -16,13 +16,13 @@ public struct ConnectionListView: View {
Text("Empty connections")
} else {
ScrollView {
LazyVGrid(columns: [GridItem(.flexible())], alignment: .leading) {
VStack {
ForEach(viewModel.filteredConnections(), id: \.id) { it in
ConnectionView(it)
}
}
.padding()
}
.padding()
}
}
}