Fix typo in SubmissionNoticeComponent

This commit is contained in:
KarelVerschraegen
2021-09-06 15:50:13 +02:00
committed by GitHub
parent 840dbbde4a
commit 07f0b87379

View File

@@ -15,13 +15,13 @@ export interface SubmissionNoticeProps {
closeListener: () => void; closeListener: () => void;
} }
export interface SubmissionNoticeeState { export interface SubmissionNoticeState {
noticeTitle: string, noticeTitle: string,
messages: string[], messages: string[],
idSuffix: string; idSuffix: string;
} }
class SubmissionNoticeComponent extends React.Component<SubmissionNoticeProps, SubmissionNoticeeState> { class SubmissionNoticeComponent extends React.Component<SubmissionNoticeProps, SubmissionNoticeState> {
// Contains functions and variables from the content script needed by the skip notice // Contains functions and variables from the content script needed by the skip notice
contentContainer: ContentContainer; contentContainer: ContentContainer;