This commit is contained in:
Thomas Ricouard 2024-01-08 18:22:10 +01:00
parent 4ebe486816
commit 6af0c36740

View file

@ -62,6 +62,7 @@ public struct StatusesListView<Fetcher>: View where Fetcher: StatusesFetcher {
switch nextPageState { switch nextPageState {
case .hasNextPage: case .hasNextPage:
loadingRow loadingRow
.id(UUID().uuidString)
.onAppear { .onAppear {
Task { Task {
await fetcher.fetchNextPage() await fetcher.fetchNextPage()
@ -69,6 +70,7 @@ public struct StatusesListView<Fetcher>: View where Fetcher: StatusesFetcher {
} }
case .loadingNextPage: case .loadingNextPage:
loadingRow loadingRow
.id(UUID().uuidString)
case .none: case .none:
EmptyView() EmptyView()
} }