@ckb-ccc/connector 0.0.11-alpha.1 → 0.0.11-alpha.2
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/signers/index.js +1 -1
- package/package.json +3 -3
- package/src/signers/index.ts +1 -1
package/dist/signers/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckb-ccc/connector",
|
|
3
|
-
"version": "0.0.11-alpha.
|
|
3
|
+
"version": "0.0.11-alpha.2",
|
|
4
4
|
"description": "CCC - CKBer's Codebase. Common Chains Connector UI",
|
|
5
5
|
"author": "Hanssen0 <hanssen0@hanssen0.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@ckb-ccc/ccc": "0.0.11-alpha.
|
|
41
|
+
"@ckb-ccc/ccc": "0.0.11-alpha.2",
|
|
42
42
|
"lit": "^3.1.3"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "fd2ee28eac9dc6a3572181b9da05eba204ee13df"
|
|
45
45
|
}
|
package/src/signers/index.ts
CHANGED
|
@@ -198,7 +198,7 @@ export class SignersController implements ReactiveController {
|
|
|
198
198
|
hostConnected(): void {
|
|
199
199
|
this.refresh();
|
|
200
200
|
// Wait for plugins to be loaded
|
|
201
|
-
setTimeout(() => this.refresh(),
|
|
201
|
+
setTimeout(() => this.refresh(), 500);
|
|
202
202
|
}
|
|
203
203
|
hostDisconnected(): void {}
|
|
204
204
|
}
|