From 9c78f98320a40037442875c634d515de62f56a3a Mon Sep 17 00:00:00 2001 From: Roei Erez Date: Tue, 12 Dec 2023 18:24:29 +0200 Subject: [PATCH] fix react native snippet --- snippets/react-native/receive_onchain.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/react-native/receive_onchain.ts b/snippets/react-native/receive_onchain.ts index 6272bff..79a6ef7 100644 --- a/snippets/react-native/receive_onchain.ts +++ b/snippets/react-native/receive_onchain.ts @@ -12,8 +12,8 @@ const exampleReceiveOnchain = async () => { // Send your funds to the below bitcoin address const address = swapInfo.bitcoinAddress - console.log(`Minimum amount allowed to deposit in sats: {}`, swapInfo.minAllowedDeposit) - console.log(`Maximum amount allowed to deposit in sats: {}`, swapInfo.maxAllowedDeposit) + console.log(`Minimum amount allowed to deposit in sats: ${swapInfo.minAllowedDeposit}`) + console.log(`Maximum amount allowed to deposit in sats: ${swapInfo.maxAllowedDeposit}`) // ANCHOR_END: generate-receive-onchain-address }