Testing trying to keep serialization through interface

More variables called through app, reversed to original. keep serialization through interface.
This commit is contained in:
Extremesecrecy
2025-07-24 10:32:11 -07:00
parent 98708821be
commit 8fd86901e5
7 changed files with 14 additions and 12 deletions
+3 -3
View File
@@ -62,7 +62,7 @@ const AboutDialog = class extends Component<AboutDialogProps, AboutDialogState>
.then(jackStatus => {
this.setState({ jackStatus: jackStatus });
})
.catch(() => { /* ignore*/ });
.catch(_error => { /* ignore*/ });
}
}
@@ -116,12 +116,12 @@ const AboutDialog = class extends Component<AboutDialogProps, AboutDialogState>
this.mounted = false;
this.updateNotifications();
}
componentDidUpdate(prevProps: Readonly<AboutDialogProps>, prevState: Readonly<AboutDialogState>, snapshot: unknown): void {
componentDidUpdate(prevProps: Readonly<AboutDialogProps>, prevState: Readonly<AboutDialogState>, snapshot: any): void {
super.componentDidUpdate?.(prevProps, prevState, snapshot);
this.updateNotifications();
}
handleDialogClose() {
handleDialogClose(_e: SyntheticEvent) {
this.props.onClose();
}