Skip to content

Commit

Permalink
Merge pull request #96 from lacepool/main
Browse files Browse the repository at this point in the history
fix event name mismatch
  • Loading branch information
fabianbormann authored Mar 13, 2024
2 parents 114e550 + 57ef969 commit f7bf3c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class Wallet {

if (event === 'enabled') {
this.enabledObserver.subscribe(callback);
} else if (event === 'isConnecting') {
} else if (event === 'connecting') {
this.isConnectingObserver.subscribe(callback);
} else if (event === 'enabledWallet') {
this.enabledWalletObserver.subscribe(callback);
Expand Down

0 comments on commit f7bf3c3

Please sign in to comment.