Skip to content

Commit 53d56f5

Browse files
authored
Merge pull request #35937 from Expensify/youssef_fix_blocker
[CP Staging] Fix broken navigation to transaction thread while offline
2 parents 331d776 + b730676 commit 53d56f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ReportActionItem/MoneyRequestAction.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function MoneyRequestAction({
9292
}
9393

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

0 commit comments

Comments
 (0)