File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
packages/thirdweb/src/wallets/coinbase Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -13,11 +13,14 @@ export async function initMobileProvider(args: {
13
13
hostPackageName : args . hostPackageName || "org.toshi" ,
14
14
} ) ;
15
15
let CoinbaseWalletMobileSDK = (
16
- await import ( "@coinbase/wallet-mobile-sdk/build/WalletMobileSDKEVMProvider" )
16
+ await import (
17
+ // @ts -ignore this is only visible from RN
18
+ "@coinbase/wallet-mobile-sdk/build/WalletMobileSDKEVMProvider"
19
+ )
17
20
) . WalletMobileSDKEVMProvider ;
18
21
if (
19
22
typeof CoinbaseWalletMobileSDK !== "function" &&
20
- // @ts -expect-error This import error is not visible to TypeScript
23
+ // @ts -ignore this is only visible from RN
21
24
typeof CoinbaseWalletMobileSDK . default === "function"
22
25
) {
23
26
CoinbaseWalletMobileSDK = (
You can’t perform that action at this time.
0 commit comments