We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df2c95e commit 613de45Copy full SHA for 613de45
1 file changed
src/pages/TransactionMerge/DetailsReviewPage.tsx
@@ -84,6 +84,10 @@ function DetailsReviewPage({route}: DetailsReviewPageProps) {
84
if (targetTransactionThreadReportID && !targetTransactionThreadReport) {
85
return openReport(targetTransactionThreadReportID);
86
}
87
+ // We need to wait for report to be loaded completely, avoid still optimistic loading
88
+ if (!targetTransactionThreadReport?.reportID) {
89
+ return;
90
+ }
91
92
Navigation.navigate(ROUTES.MERGE_TRANSACTION_CONFIRMATION_PAGE.getRoute(transactionID, Navigation.getActiveRoute()));
93
setIsCheckingDataBeforeGoNext(false);
0 commit comments