Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Da-Colon committed Jun 8, 2022
1 parent 9142650 commit 37aa9cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Proposals/CastVote.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function CastVote({ proposal }: { proposal: ProposalData }) {
const [newVote, setNewVote] = useState<number>();
const [voteButtonString, setVoteButtonString] = useState<string>();
const [pending, setPending] = useState<boolean>(false);

const test = 'test';
useEffect(() => {
if (proposal.state !== ProposalState.Active) {
setVoteButtonString('Voting Closed');
Expand Down Expand Up @@ -72,7 +72,7 @@ function CastVote({ proposal }: { proposal: ProposalData }) {
proposal.userVotePower.eq(0) ||
pending
}
label="Vote Not"
label="Vote No"
isIconRight
isSpaceBetween
isLarge
Expand Down

0 comments on commit 37aa9cb

Please sign in to comment.