Update DelegationCheck.tsx (#725)

* Update DelegationCheck.tsx

* Update NodeDelegation.tsx
This commit is contained in:
Jess
2021-08-06 09:38:47 +01:00
committed by GitHub
parent aaa4378b33
commit 4c1c6d86c8
2 changed files with 2 additions and 2 deletions
@@ -24,7 +24,7 @@ const DelegateToNode = () => {
const [delegationError, setDelegationError] = React.useState(null)
const [nodeType, setNodeType] = React.useState(NodeType.Mixnode)
const [stakeValue, setStakeValue] = React.useState('0 HAL')
const [stakeValue, setStakeValue] = React.useState('0 PUNK')
const [nodeIdentity, setNodeIdentity] = React.useState('')
useEffect(() => {
@@ -39,7 +39,7 @@ const DelegationCheck = () => {
'Could not find any delegation information associated with'
)
) {
setStakeValue('0 HAL')
setStakeValue('0 PUNK')
} else {
setCheckError(err)
}