Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
nikos-koukis committed Oct 13, 2023
1 parent 50edb07 commit 8fbf165
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/views/Home/components/NewUserForm/CreateWallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ interface CreateWalletProps {
const jsonPretty = JSON.stringify(jsonFileContent);

setJsonFileContent(jsonPretty);
console.log("jsonPretty", jsonPretty)
} catch (error) {
console.error(error);
}
Expand Down
2 changes: 1 addition & 1 deletion src/views/Home/components/NewUserForm/NewUserForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function NewUserForm({ email, userGid, setClickedSubmit }: NewUserFormProps) {
Back
</Button>
)}
{activeStep > 0 && !isLastStep && (isLoadingUserInfo && userInfo?.address === "") && (
{activeStep > 0 && !isLastStep && (!isLoadingUserInfo && userInfo?.address !== "") && (
<Button size="sm" onClick={() => handleNextStep()}>
Connect Wallet
</Button>
Expand Down

0 comments on commit 8fbf165

Please sign in to comment.