Skip to content

Commit

Permalink
Merge branch 'fix-voting-on-privacy-none-proposals' of https://github…
Browse files Browse the repository at this point in the history
….com/snapshot-labs/sx-monorepo into fix-voting-on-privacy-none-proposals
  • Loading branch information
ChaituVR committed Jan 9, 2025
2 parents ab68f6a + b8ae403 commit 16c8e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/ui/src/components/Modal/Votes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ async function handleEndReached() {
}
const isEncrypted = computed(() => {
return props.proposal.privacy === 'shutter' && !props.proposal.completed;
return props.proposal.privacy !== 'none' && !props.proposal.completed;
});
watch([open, () => props.proposal.id], ([toOpen, toId], [, fromId]) => {
Expand Down

0 comments on commit 16c8e0b

Please sign in to comment.