Skip to content

Commit

Permalink
fix(ux): missing provider name when calling login() (#652)
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e authored Aug 24, 2024
1 parent a2d709d commit e8ea6fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/ui/src/composables/useWeb3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export function useWeb3() {
if (!accounts.length) return;

state.account = formatAddress(accounts[0]);
await login();
await login(providerName);
});

if (!STARKNET_CONNECTORS.includes(providerName)) {
Expand Down

0 comments on commit e8ea6fa

Please sign in to comment.