Skip to content

Commit

Permalink
Merge pull request #16 from lucasvuotto/fix/captcha-response
Browse files Browse the repository at this point in the history
fix: adapt to new captcha endpoint response
  • Loading branch information
ezequiel-rodriguez authored Jan 19, 2024
2 parents e67fded + c182406 commit 2c31c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/faucet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const Faucet = (props: FaucetProps) => {
/>
<div>
{isLoadingCaptcha(props.captcha.id) ? (
<img className="faucet-captcha-image rounded-rsk" src={`data:image/png;base64,${props.captcha.png}`} />
<img className="faucet-captcha-image rounded-rsk" src={`data:image/png;base64,${props.captcha.result.png}`} />
) : (
<div className='container-empty-captcha'>
<div className="spinner"></div>
Expand Down

0 comments on commit 2c31c86

Please sign in to comment.