1
0
Fork 0
mirror of https://github.com/Dimillian/IceCubesApp.git synced 2025-01-13 09:35:27 +00:00

Remove id in ForEach

This commit is contained in:
Thomas Ricouard 2024-07-18 20:10:49 +02:00
parent 47b5fdf92e
commit 3f2fbeeec4

View file

@ -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,