Fix type error

This commit is contained in:
Ajay
2022-09-18 16:58:53 -04:00
parent 7bbf2f1ce2
commit d044944946

View File

@@ -18,7 +18,7 @@ export interface ChapterVoteProps {
export interface ChapterVoteState { export interface ChapterVoteState {
segment?: SponsorTime; segment?: SponsorTime;
show: boolean; show: boolean;
size: string; size?: string;
} }
class ChapterVoteComponent extends React.Component<ChapterVoteProps, ChapterVoteState> { class ChapterVoteComponent extends React.Component<ChapterVoteProps, ChapterVoteState> {