diff --git a/source/renderer/app/components/voting/voting-governance/VotingPowerDelegation.tsx b/source/renderer/app/components/voting/voting-governance/VotingPowerDelegation.tsx index 1fc0a07ea3..048f12936c 100644 --- a/source/renderer/app/components/voting/voting-governance/VotingPowerDelegation.tsx +++ b/source/renderer/app/components/voting/voting-governance/VotingPowerDelegation.tsx @@ -140,7 +140,10 @@ function VotingPowerDelegation({ }, ]; - const chosenOption = state.drepInputState.value || state.selectedVoteType; + const chosenOption = + state.selectedVoteType === 'drep' + ? state.drepInputState.value + : state.selectedVoteType; useEffect(() => { (async () => {