Skip to content

Commit

Permalink
Merge pull request #44332 from Expensify/neil-wrapper-not-found
Browse files Browse the repository at this point in the history
[No QA] Not found should be within screen wrapper
  • Loading branch information
youssef-lr committed Jun 27, 2024
2 parents 4722d06 + bd81d1b commit d005e6e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/TransactionDuplicate/Review.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ function TransactionDuplicateReview() {
};

return (
<FullPageNotFoundView shouldShow={transactionID === '-1'}>
<ScreenWrapper testID={TransactionDuplicateReview.displayName}>
<ScreenWrapper testID={TransactionDuplicateReview.displayName}>
<FullPageNotFoundView shouldShow={transactionID === '-1'}>
<HeaderWithBackButton title={translate('iou.reviewDuplicates')} />
<View style={[styles.justifyContentCenter, styles.ph5, styles.pb3, styles.borderBottom]}>
<Button
Expand All @@ -53,8 +53,8 @@ function TransactionDuplicateReview() {
/>
</View>
<DuplicateTransactionsList transactions={transactions} />
</ScreenWrapper>
</FullPageNotFoundView>
</FullPageNotFoundView>
</ScreenWrapper>
);
}

Expand Down

0 comments on commit d005e6e

Please sign in to comment.