Skip to content

Commit

Permalink
crash bill
Browse files Browse the repository at this point in the history
  • Loading branch information
pradeepmdk committed Aug 21, 2023
1 parent d1cf9be commit 7dab19b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ReportActionItem/MoneyRequestAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function MoneyRequestAction(props) {
props.action.pendingAction === CONST.RED_BRICK_ROAD_PENDING_ACTION.ADD &&
props.network.isOffline
) {
shouldShowPendingConversionMessage = IOUUtils.isIOUReportPendingCurrencyConversion(props.reportActions, props.iouReport);
shouldShowPendingConversionMessage = IOUUtils.isIOUReportPendingCurrencyConversion(props.iouReport);
}

return isDeletedParentAction ? (
Expand Down
2 changes: 1 addition & 1 deletion src/libs/TransactionUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Onyx.connect({
if (!val) {
return;
}
allTransactions = val;
allTransactions = _.pick(val, (val) => val);
},
});

Expand Down

0 comments on commit 7dab19b

Please sign in to comment.