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 aefbc60 commit bb16205Copy full SHA for bb16205
1 file changed
src/pages/TransactionDuplicate/Review.tsx
@@ -67,7 +67,7 @@ function TransactionDuplicateReview() {
67
openReport(route.params.threadReportID);
68
}, [report?.reportID, route.params.threadReportID]);
69
70
- const isLoadingPage = !report?.reportID && reportMetadata?.isLoadingInitialReportActions !== false || !reportAction?.reportActionID;
+ const isLoadingPage = (!report?.reportID && reportMetadata?.isLoadingInitialReportActions !== false) || !reportAction?.reportActionID;
71
72
// eslint-disable-next-line rulesdir/no-negated-variables
73
const shouldShowNotFound = !isLoadingPage && !transactionID;
0 commit comments