Skip to content

Commit

Permalink
types: fix type error from schema change
Browse files Browse the repository at this point in the history
  • Loading branch information
helmturner committed Jun 11, 2024
1 parent 950ede8 commit 09a2176
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/voting/ProposalInterestVote.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type ProposalInterestVoteProps = {
proposalId: number;
disabled?: boolean;
onVoteChange: (vote: Vote) => void;
vote: Vote | null;
vote: Vote | undefined;
};

export default function ProposalInterestVote(props: ProposalInterestVoteProps) {
Expand Down

0 comments on commit 09a2176

Please sign in to comment.