diff --git a/frontend/src/context/TransactionContext.tsx b/frontend/src/context/TransactionContext.tsx index f381d18c..a3ca3a7e 100644 --- a/frontend/src/context/TransactionContext.tsx +++ b/frontend/src/context/TransactionContext.tsx @@ -143,6 +143,9 @@ export function TransactionProvider({ children }: { children: ReactNode }) { fetchTableData(activePage); } // ignoring activePage in this dependency array since we don't need to refetch on page change + if (activePage === "unreconciled") { + fetchTableData("recommended"); + } // eslint-disable-next-line react-hooks/exhaustive-deps }, [user, filters, fetchTableData]);