Skip to content

Commit

Permalink
pollType on PollResult is not nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesNakayama committed Oct 16, 2024
1 parent 6775be3 commit da53f1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/building-blocks/poll-result.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function PollResult({
postId: number
pCurrent: number
voteCount: number
pollType: PollType | null
pollType: PollType
}) {
const pCurrentString: string = (pCurrent * 100).toFixed(0) + '%'

Expand Down

0 comments on commit da53f1b

Please sign in to comment.