Skip to content

Commit

Permalink
Merge pull request Expensify#50126 from nkdengineer/fix/49268
Browse files Browse the repository at this point in the history
fix: Tapping thread reply of expense hold offline, hmm not here displayed briefly
  • Loading branch information
srikarparsi authored Oct 16, 2024
2 parents d77a4fd + ad68038 commit ce23fb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/ReportActionsUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1061,7 +1061,7 @@ function getOneTransactionThreadReportID(reportID: string, reportActions: OnyxEn

// If there's only one IOU request action associated with the report but it's been deleted, then we don't consider this a oneTransaction report
// and want to display it using the standard view
if ((originalMessage?.deleted ?? '') !== '' && isMoneyRequestAction(singleAction)) {
if (((originalMessage?.deleted ?? '') !== '' || isDeletedAction(singleAction)) && isMoneyRequestAction(singleAction)) {
return;
}

Expand Down

0 comments on commit ce23fb5

Please sign in to comment.