@walletconnect/react-native-compat 2.23.3-canary.0 → 2.23.4-canary.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/module/index.ts +2 -2
  2. package/package.json +1 -1
package/module/index.ts CHANGED
@@ -14,11 +14,11 @@ const PAY_LINKING_ERROR =
14
14
  const isTurboModuleEnabled = global.__turboModuleProxy != null;
15
15
 
16
16
  const RNWalletConnectModule = isTurboModuleEnabled
17
- ? require("../module/NativeRNWalletConnectModule.ts").default
17
+ ? require("./NativeRNWalletConnectModule.ts").default
18
18
  : NativeModules.RNWalletConnectModule;
19
19
 
20
20
  const RNWalletConnectPay = isTurboModuleEnabled
21
- ? require("../module/NativeRNWalletConnectPay.ts").default
21
+ ? require("./NativeRNWalletConnectPay.ts").default
22
22
  : NativeModules.RNWalletConnectPay;
23
23
 
24
24
  function getExpoModule(): any | undefined {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@walletconnect/react-native-compat",
3
3
  "description": "Native modules and shims for WalletConnect Protocol in React Native Projects",
4
- "version": "2.23.3-canary.0",
4
+ "version": "2.23.4-canary.0",
5
5
  "author": "WalletConnect, Inc. <walletconnect.com>",
6
6
  "homepage": "https://github.com/walletconnect/walletconnect-monorepo/",
7
7
  "license": "SEE LICENSE IN LICENSE.md",