mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-24 16:10:41 +01:00
Fix SwiftUI warning.
This commit is contained in:
parent
9794cc9a59
commit
7a53b59d5c
@ -222,7 +222,7 @@ struct AddAccountsView: View {
|
|||||||
.padding(.top, 8)
|
.padding(.top, 8)
|
||||||
|
|
||||||
HStack {
|
HStack {
|
||||||
ForEach(0..<chunkedWebAccounts().count, content: { chunk in
|
ForEach(0..<chunkedWebAccounts().count, id: \.self, content: { chunk in
|
||||||
VStack {
|
VStack {
|
||||||
Picker(selection: $selectedAccount, label: Text(""), content: {
|
Picker(selection: $selectedAccount, label: Text(""), content: {
|
||||||
ForEach(chunkedWebAccounts()[chunk], id: \.self, content: { account in
|
ForEach(chunkedWebAccounts()[chunk], id: \.self, content: { account in
|
||||||
|
Loading…
Reference in New Issue
Block a user