Skip to content

Commit 28a27ef

Browse files
committed
fix: prevent not here page showing up
1 parent d92a311 commit 28a27ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/TransactionDuplicate/Confirmation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function Confirmation() {
7171
ReportUtils.isReportNotFound(report) ||
7272
(reviewDuplicatesResult.status === 'loaded' && (!transaction?.transactionID || !doesTransactionBelongToReport));
7373

74-
if (isLoadingOnyxValue(reviewDuplicatesResult, reportResult)) {
74+
if (isLoadingOnyxValue(reviewDuplicatesResult, reportResult) || !transaction?.transactionID) {
7575
return <FullScreenLoadingIndicator />;
7676
}
7777

0 commit comments

Comments
 (0)