Skip to content

Commit

Permalink
Merge branch 'release/7.0.0' into fix/lw-11910-voting-tab-not-availab…
Browse files Browse the repository at this point in the history
…le-on-test-networks
  • Loading branch information
DominikGuzei authored Nov 29, 2024
2 parents 6966cdb + 957896f commit 303a4db
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down

0 comments on commit 303a4db

Please sign in to comment.