Skip to content

Commit

Permalink
chore: default parameter for network value
Browse files Browse the repository at this point in the history
  • Loading branch information
wainola committed Nov 23, 2023
1 parent 47302b8 commit 7b90cae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/wallet-manager/src/WalletManagerContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ export class WalletManagerContextProvider extends LitElement {
@property({ type: String })
networks: Networks;

constructor(networks: Networks) {
constructor() {
super();
this.networks = networks;
this.networks = Networks.EVM;
}

connectedCallback(): void {
Expand Down

0 comments on commit 7b90cae

Please sign in to comment.