Skip to content

Commit

Permalink
Remove any type
Browse files Browse the repository at this point in the history
  • Loading branch information
mgavrila committed Dec 11, 2024
1 parent d10b85f commit 64c86cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/providers-strategy/WalletConnectProviderStrategy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ export class WalletConnectProviderStrategy {
this.manager.closeAndReset();
this.unsubscribeEvents?.();
return { address, signature };
} catch (err: any) {
console.error(WalletConnectV2Error.userRejected, err);
} catch (error) {
console.error(WalletConnectV2Error.userRejected, error);
return await reconnect();
}
};
Expand Down

0 comments on commit 64c86cd

Please sign in to comment.