mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-01-25 23:38:06 +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)
|
.listRowSeparator(.hidden)
|
||||||
|
|
||||||
case let .display(statuses, nextPageState):
|
case let .display(statuses, nextPageState):
|
||||||
ForEach(statuses, id: \.id) { status in
|
ForEach(statuses) { status in
|
||||||
StatusRowView(viewModel: StatusRowViewModel(status: status,
|
StatusRowView(viewModel: StatusRowViewModel(status: status,
|
||||||
client: client,
|
client: client,
|
||||||
routerPath: routerPath,
|
routerPath: routerPath,
|
||||||
|
|
Loading…
Reference in a new issue