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