Fix SwiftUI warning.

This commit is contained in:
Brent Simmons 2024-02-24 21:34:54 -08:00
parent 9794cc9a59
commit 7a53b59d5c
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ struct AddAccountsView: View {
.padding(.top, 8)
HStack {
ForEach(0..<chunkedWebAccounts().count, content: { chunk in
ForEach(0..<chunkedWebAccounts().count, id: \.self, content: { chunk in
VStack {
Picker(selection: $selectedAccount, label: Text(""), content: {
ForEach(chunkedWebAccounts()[chunk], id: \.self, content: { account in