Skip to content

Commit

Permalink
fix: default WC modal never used
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenvechain committed Nov 27, 2023
1 parent 9244a64 commit 50134df
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/sample-angular-app/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const vechainWalletKitOptions = {
nodeUrl: 'https://testnet.vechain.org/',
network: 'test',
walletConnectOptions,
useWalletKitModal: true,
};

DAppKit.configure(vechainWalletKitOptions);
1 change: 1 addition & 0 deletions apps/sample-svelte-app/src/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const vechainWalletKitOptions = {
nodeUrl: 'https://testnet.vechain.org/',
network: 'test',
walletConnectOptions,
useWalletKitModal: true,
};

DAppKit.configure(vechainWalletKitOptions);
1 change: 1 addition & 0 deletions apps/sample-vanilla-app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const vechainWalletKitOptions = {
node: 'https://testnet.vechain.org/',
network: 'test',
walletConnectOptions,
useWalletKitModal: true,
};

const connex = DAppKit.configure(vechainWalletKitOptions);
Expand Down
1 change: 1 addition & 0 deletions apps/sample-vue-app/src/connex/ConnexProvider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export default defineComponent({
const connex = DAppKit.configure({
nodeUrl: 'https://mainnet.vechain.org/',
walletConnectOptions,
useWalletKitModal: true,
});
const onDisconnected = () => {
Expand Down
1 change: 1 addition & 0 deletions packages/dapp-kit-ui/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const vechainWalletKitOptions = {
node: 'https://testnet.vechain.org/',
network: 'test',
walletConnectOptions,
useWalletKitModal: true,
};

DAppKit.configure(vechainWalletKitOptions);

0 comments on commit 50134df

Please sign in to comment.