Skip to content

Commit

Permalink
Merge pull request #35937 from Expensify/youssef_fix_blocker
Browse files Browse the repository at this point in the history
[CP Staging] Fix broken navigation to transaction thread while offline
  • Loading branch information
marcaaron authored Feb 6, 2024
2 parents 331d776 + b730676 commit 53d56f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ReportActionItem/MoneyRequestAction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function MoneyRequestAction({
}

// If the childReportID is not present, we need to create a new thread
const childReportID = action?.childReportID ?? '0';
const childReportID = action?.childReportID;
if (!childReportID) {
const thread = ReportUtils.buildTransactionThread(action, requestReportID);
const userLogins = PersonalDetailsUtils.getLoginsByAccountIDs(thread.participantAccountIDs ?? []);
Expand Down

0 comments on commit 53d56f5

Please sign in to comment.