diff --git a/wallet-web/components/delegation-check/DelegationCheck.tsx b/wallet-web/components/delegation-check/DelegationCheck.tsx index 135724d89d..db590eb710 100644 --- a/wallet-web/components/delegation-check/DelegationCheck.tsx +++ b/wallet-web/components/delegation-check/DelegationCheck.tsx @@ -21,7 +21,7 @@ const DelegationCheck = () => { const [checkError, setCheckError] = React.useState(null) const [nodeType, setNodeType] = React.useState(NodeType.Mixnode) - const [stakeValue, setStakeValue] = React.useState('0') + const [stakeValue, setStakeValue] = React.useState() const [nodeIdentity, setNodeIdentity] = React.useState('') useEffect(() => { @@ -75,13 +75,14 @@ const DelegationCheck = () => { } const getDelegationCheckContent = () => { + console.log(isLoading) // we're not signed in if (client === null) { return } // we haven't clicked delegate button yet - if (!isLoading) { + if (!isLoading && !stakeValue) { return ( <>