Skip to content

Commit

Permalink
fix(webapp): fix input.name must be a string
Browse files Browse the repository at this point in the history
  • Loading branch information
Torresmorah committed May 27, 2023
1 parent b9fe7e8 commit 91e17df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/routes/Faucet/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const Faucet = () => {
variables: {
token: reCaptchaToken,
public_key: createAccountValues.publicKey,
name: createAccountValues.accountName,
name: createAccountValues.accountName || '',
},
})

Expand Down

0 comments on commit 91e17df

Please sign in to comment.