@txnlab/use-wallet 1.1.5 → 1.1.6

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.
package/dist/esm/index.js CHANGED
@@ -1580,7 +1580,8 @@ class ExodusClient extends BaseClient {
1580
1580
  });
1581
1581
  }
1582
1582
  catch (e) {
1583
- console.error("Error initializing...", e);
1583
+ console.warn(e);
1584
+ console.warn(`Error initializing ${ExodusClient.metadata.name}.`, "Do you have the extension installed?", "https://www.exodus.com/web3-wallet");
1584
1585
  return null;
1585
1586
  }
1586
1587
  }
@@ -1729,7 +1730,8 @@ class AlgoSignerClient extends BaseClient {
1729
1730
  });
1730
1731
  }
1731
1732
  catch (e) {
1732
- console.error("Error initializing...", e);
1733
+ console.warn(e);
1734
+ console.warn(`Error initializing ${AlgoSignerClient.metadata.name}.`, "Do you have the extension installed?", "https://www.purestake.com/technology/algosigner");
1733
1735
  return null;
1734
1736
  }
1735
1737
  }
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "url": "https://github.com/txnlab/use-wallet/issues"
13
13
  },
14
14
  "homepage": "https://txnlab.github.io/use-wallet",
15
- "version": "1.1.5",
15
+ "version": "1.1.6",
16
16
  "description": "React hooks for using Algorand compatible wallets in dApps.",
17
17
  "scripts": {
18
18
  "dev": "yarn storybook",