We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c99b0c9 commit 7c74b70Copy full SHA for 7c74b70
web/src/pages/Resolver/NavigationButtons/NextButton.tsx
@@ -22,7 +22,7 @@ const NextButton: React.FC<INextButton> = ({ nextRoute }) => {
22
if (!disputeData.disputeKitData || disputeData.disputeKitData.type !== "gated") return true;
23
24
const gatedData = disputeData.disputeKitData as IGatedDisputeData;
25
- if (!gatedData?.tokenGate?.trim()) return true; // No token address provided, so valid
+ if (!gatedData?.tokenGate?.trim()) return false; // No token address provided, so invalid
26
27
// If token address is provided, it must be validated as valid ERC20
28
return gatedData.isTokenGateValid === true;
0 commit comments