Skip to content

Commit 7543b6e

Browse files
fix(keystone): use let for AirGappedKeyring const (#1047)
* fix(keystone): use let for AirGappedKeyring const * chore(keystone): update package.json for Patch * chore(keystone): update version to 2.1.1-alpha.1 Co-authored-by: Taylor Dawson <taylorjdawson@gmail.com>
1 parent e47459b commit 7543b6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/keystone/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@web3-onboard/keystone",
3-
"version": "2.1.0",
3+
"version": "2.1.1-alpha.1",
44
"description": "Keystone module for web3-onboard",
55
"module": "dist/index.js",
66
"typings": "dist/index.d.ts",

packages/keystone/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function keystone({
7979
'@ethersproject/providers'
8080
)
8181

82-
const { default: AirGappedKeyring } = await import(
82+
let { default: AirGappedKeyring } = await import(
8383
'@keystonehq/eth-keyring'
8484
)
8585

0 commit comments

Comments
 (0)