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 #114

Open
wants to merge 1 commit into
base: main
Choose a base branch
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.

📖 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.
Copy link

vercel bot commented Nov 14, 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.

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.

Small typo!

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

const [captchaCode, setCaptchaCode] = useState<string | null>(null);
const [showCloudfare, setShowCloudfare] = useState(true);
const [setShowCloudflare, setsetShowCloudflare] = 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.

setsetShowCloudflare doesn't make sense
convention for useState is x, setX

so this line should be updated to showCloudflare, setShowCloudflare

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