Skip to content

Commit

Permalink
remove wallet update
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed May 29, 2024
1 parent 2ebe8b4 commit 2527d9d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions frontend/components/Setup/SetupWelcome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ export const SetupWelcomeLogin = () => {
async ({ password }: { password: string }) => {
setIsLoggingIn(true);
AccountService.loginAccount(password)
.then(() => updateWallets())
.then(() => {
if (masterEoaAddress && !masterSafeAddress) {
gotoPage(PageState.Setup);
Expand All @@ -129,7 +128,7 @@ export const SetupWelcomeLogin = () => {
})
.finally(() => setIsLoggingIn(false));
},
[goto, gotoPage, masterEoaAddress, masterSafeAddress, updateWallets],
[goto, gotoPage, masterEoaAddress, masterSafeAddress],
);

return (
Expand Down

0 comments on commit 2527d9d

Please sign in to comment.