diff options
Diffstat (limited to 'src/components/SponsorTimeEditComponent.tsx')
-rw-r--r-- | src/components/SponsorTimeEditComponent.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/SponsorTimeEditComponent.tsx b/src/components/SponsorTimeEditComponent.tsx index 9519c1f8..7446c9ca 100644 --- a/src/components/SponsorTimeEditComponent.tsx +++ b/src/components/SponsorTimeEditComponent.tsx @@ -14,15 +14,16 @@ import { DEFAULT_CATEGORY } from "../utils/categoryUtils"; const utils = new Utils(); export interface SponsorTimeEditProps { - index: number, + index: number; - idSuffix: string, + idSuffix: string; // Contains functions and variables from the content script needed by the skip notice - contentContainer: ContentContainer, + contentContainer: ContentContainer; submissionNotice: SubmissionNoticeComponent; categoryList?: Category[]; categoryChangeListener?: (index: number, category: Category) => void; + children?: React.ReactNode; } export interface SponsorTimeEditState { |