mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-01-11 16:45:27 +00:00
Remove id in ForEach
This commit is contained in:
parent
09104ee903
commit
500c798159
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ public struct StatusesListView<Fetcher>: View where Fetcher: StatusesFetcher {
|
|||
.listRowSeparator(.hidden)
|
||||
|
||||
case let .display(statuses, nextPageState):
|
||||
ForEach(statuses, id: \.id) { status in
|
||||
ForEach(statuses) { status in
|
||||
StatusRowView(viewModel: StatusRowViewModel(status: status,
|
||||
client: client,
|
||||
routerPath: routerPath,
|
||||
|
|
Loading…
Reference in a new issue