From e264cffde0b06918554f8fe306df70a5b99cdd0a Mon Sep 17 00:00:00 2001 From: cpl121 Date: Fri, 15 Jul 2022 16:24:58 +0200 Subject: [PATCH] Fix anti-bot error --- pages/verify-candy-machine/[id].tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pages/verify-candy-machine/[id].tsx b/pages/verify-candy-machine/[id].tsx index 3984ff6..f4eb988 100644 --- a/pages/verify-candy-machine/[id].tsx +++ b/pages/verify-candy-machine/[id].tsx @@ -69,7 +69,7 @@ const VerifyCandyMachine: NextPage = () => { {!isLoading && error &&
{error}
} - {isCaptcha ? ( + {!isCaptcha ? ( <> {!shouldMint && itemsRemaining !== 0 && (
Important! Verify before Mint!
@@ -98,8 +98,9 @@ const VerifyCandyMachine: NextPage = () => { ) : ( + // TODO: Add metaplex CIVIC Gateway when captcha is enabled
- Captcha is disabled. You can modify it in Inspect candy machine + Captcha is enabled. You can modify it in Inspect candy machine
)}