diff --git a/src/Explorer/Menus/NotificationConsole/NotificationConsoleComponent.tsx b/src/Explorer/Menus/NotificationConsole/NotificationConsoleComponent.tsx index c715159ca..d10dbff9d 100644 --- a/src/Explorer/Menus/NotificationConsole/NotificationConsoleComponent.tsx +++ b/src/Explorer/Menus/NotificationConsole/NotificationConsoleComponent.tsx @@ -27,7 +27,7 @@ export interface NotificationConsoleComponentProps { } interface NotificationConsoleComponentState { - headerStatus: string; + headerStatus: string | undefined; selectedFilter: string; allConsoleData: ConsoleData[]; } @@ -44,7 +44,7 @@ export class NotificationConsoleComponent extends React.Component< { key: "Error", text: "Error" }, ]; private headerTimeoutId?: number; - private prevHeaderStatus: string; + private prevHeaderStatus: string | undefined; private consoleHeaderElement?: HTMLElement; constructor(props: NotificationConsoleComponentProps) { @@ -99,7 +99,7 @@ export class NotificationConsoleComponent extends React.Component<