@aptos-labs/wallet-adapter-core
Advanced tools
Comparing version 0.2.2 to 0.2.3
# @aptos-labs/wallet-adapter-core | ||
## 0.2.3 | ||
### Patch Changes | ||
- 017556c: connect() to simply return if wallet is not installed | ||
## 0.2.2 | ||
@@ -4,0 +10,0 @@ |
@@ -283,3 +283,3 @@ "use strict"; | ||
if (!selectedWallet || selectedWallet.readyState !== "Installed" /* Installed */ && selectedWallet.readyState !== "Loadable" /* Loadable */) { | ||
throw new WalletConnectionError(`${walletName} wallet not found`).message; | ||
return; | ||
} | ||
@@ -286,0 +286,0 @@ if (this._connected) { |
{ | ||
"name": "@aptos-labs/wallet-adapter-core", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"description": "Aptos Wallet Adapter Core", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
@@ -183,4 +183,3 @@ import { HexString, Types } from "aptos"; | ||
) { | ||
throw new WalletConnectionError(`${walletName} wallet not found`) | ||
.message; | ||
return; | ||
} | ||
@@ -187,0 +186,0 @@ |
Sorry, the diff of this file is not supported yet
60294
1764