We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11385b8 commit 26675baCopy full SHA for 26675ba
src/pages/AddUnreportedExpense.tsx
@@ -38,7 +38,7 @@ function AddUnreportedExpense({route}: AddUnreportedExpensePageType) {
38
if (!transactions) {
39
return [];
40
}
41
- return Object.values(transactions || {}).filter((item) => item?.reportID === '0');
+ return Object.values(transactions || {}).filter((item) => item?.reportID === '0' || !!item?.reportID);
42
43
44
const [transactions = []] = useOnyx(ONYXKEYS.COLLECTION.TRANSACTION, {
0 commit comments