From 5072022da83c8ab1be35fa833e8dbe08459e617a Mon Sep 17 00:00:00 2001 From: Jason Date: Thu, 19 Oct 2023 11:59:38 +0200 Subject: [PATCH] test(scan): fix scan url --- src/utils/scanner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/scanner.ts b/src/utils/scanner.ts index aa97998a9..79a89ea04 100644 --- a/src/utils/scanner.ts +++ b/src/utils/scanner.ts @@ -387,7 +387,7 @@ export const decodeQRData = async ( // Treasure hunt if (__DEV__ || selectedNetwork === EAvailableNetworks.bitcoin) { // Airdrop - if (data.includes('cutt.ly/VwQFzhJJ')) { + if (data.includes('cutt.ly/VwQFzhJJ') || data.includes('bitkit.to/drone')) { const chestId = '2gZxrqhc'; return ok([{ qrDataType: EQRDataType.treasureHunt, chestId }]); }