This commit is contained in:
Thomas Ricouard 2023-02-11 07:20:14 +01:00
commit aea5c3e151
1 changed files with 5 additions and 1 deletions

View File

@ -83,7 +83,11 @@ public struct ConversationsListView: View {
}
}
.refreshable {
await viewModel.fetchConversations()
// note: this Task wrapper should not be necessary, but it reportedly crashes without it
// when refreshing on an empty list
Task {
await viewModel.fetchConversations()
}
}
.onAppear {
viewModel.client = client