Skip to content

Commit

Permalink
fix(receive): synonymdev#1427 fix show btc invoice if instant payment…
Browse files Browse the repository at this point in the history
… is disabled
  • Loading branch information
flaviomoceri committed Dec 14, 2023
1 parent 5d14600 commit 27af8c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/Wallets/Receive/ReceiveQR.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ const ReceiveQR = ({
return (
<View style={styles.slide}>
<ThemedView style={styles.invoices} color="white04">
{!jitInvoice && (
{(!jitInvoice || !enableInstant) && (
<View style={styles.invoice} testID="ReceiveOnchainInvoice">
<View style={styles.invoiceLabel}>
<Caption13Up color="gray1">
Expand Down

0 comments on commit 27af8c8

Please sign in to comment.