Skip to content

Commit

Permalink
Merge pull request #2042 from decentdao/hotfix/v0.2.6
Browse files Browse the repository at this point in the history
Hotfix/v0.2.6
  • Loading branch information
adamgall authored Jun 22, 2024
2 parents af0dec7 + 70b669f commit 1f730e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "decent-interface",
"version": "0.2.5",
"version": "0.2.6",
"private": true,
"dependencies": {
"@apollo/client": "^3.7.10",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Proposals/ProposalActions/CastVote.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ function Vote({
height="auto"
width="full"
isDisabled={disabled}
onClick={() => selectedVoteChoice && castVote(selectedVoteChoice)}
onClick={() => selectedVoteChoice !== undefined && castVote(selectedVoteChoice)}
>
{t('vote')}
</Button>
Expand Down

0 comments on commit 1f730e6

Please sign in to comment.