diff --git a/Twigs/Transaction/TransactionListView.swift b/Twigs/Transaction/TransactionListView.swift index e1add71..220b72b 100644 --- a/Twigs/Transaction/TransactionListView.swift +++ b/Twigs/Transaction/TransactionListView.swift @@ -66,6 +66,9 @@ struct TransactionListView: View where Content: View { TransactionList(transactions) } .searchable(text: $search) + .refreshable { + await transactionDataStore.getTransactions(self.budget.id, categoryId: self.category?.id, from: nil, count: nil, page: nil) + } .sheet( isPresented: .constant(addingTransaction), content: {