Skip to content

Commit

Permalink
Handle no user vote
Browse files Browse the repository at this point in the history
  • Loading branch information
samuveth committed Jan 24, 2024
1 parent 7c8c35e commit 4fb086d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/SpaceProposalBoost.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ function handleBoost() {
}
async function loadRewards() {
if (!web3Account.value || !loaded.value || !isFinal.value) return;
if (!web3Account.value || !loaded.value || !isFinal.value || !userVote.value)
return;
loadingRewards.value = true;
try {
Expand Down

0 comments on commit 4fb086d

Please sign in to comment.