Skip to content

Commit 09a2176

Browse files
committed
types: fix type error from schema change
1 parent 950ede8 commit 09a2176

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/features/voting/ProposalInterestVote.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ type ProposalInterestVoteProps = {
2525
proposalId: number;
2626
disabled?: boolean;
2727
onVoteChange: (vote: Vote) => void;
28-
vote: Vote | null;
28+
vote: Vote | undefined;
2929
};
3030

3131
export default function ProposalInterestVote(props: ProposalInterestVoteProps) {

0 commit comments

Comments
 (0)