Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo fixed Update faucet-claim.tsx #113

Closed
wants to merge 1 commit into from

Conversation

famouswizard
Copy link

📖 description

IIn this line:

setTimeout(() => setShowCloudfare(false), 1000);

There is likely an intended delay before hiding "Cloudflare", but there is a typo in the word "Cloudfare".

Corrected to:

setTimeout(() => setShowCloudflare(false), 1000);

Fixed.

🐛 type of change

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

🏁 checklist

  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • New and existing unit tests pass locally with my changes

In this line:

javascript
Copy code
setTimeout(() => setShowCloudfare(false), 1000);

There is likely an intended delay before hiding "Cloudflare", but there is a typo in the word "Cloudfare". Corrected to:

javascript
Copy code
setTimeout(() => setShowCloudflare(false), 1000);

This fixes the typo in "Cloudfare".
Copy link

vercel bot commented Nov 12, 2024

@famouswizard is attempting to deploy a commit to the Kakarot ZK-EVM Team on Vercel.

A member of the Team first needs to authorize it.

@parzuko parzuko self-requested a review November 14, 2024 10:41
Copy link
Collaborator

@parzuko parzuko left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could you please fix this typo everywhere?

thanks for contributing ✨

@@ -49,7 +49,7 @@ export const FaucetClaim = ({
const { data: isDowntimeCheck } = useIsDowntime();

const [captchaCode, setCaptchaCode] = useState<string | null>(null);
const [showCloudfare, setShowCloudfare] = useState(true);
const [showCloudfare, setShowCloudflare] = useState(true);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you update showCloudfare to showCloudflare as well?

@famouswizard
Copy link
Author

📖 description

IIn this line:

setTimeout(() => setShowCloudfare(false), 1000);

There is likely an intended delay before hiding "Cloudflare", but there is a typo in the word "Cloudfare".

Corrected to:

setTimeout(() => setShowCloudflare(false), 1000);

Fixed.

Sure. Check parzuko #114

@parzuko parzuko closed this Nov 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants