fix three lints

This commit is contained in:
Michael Telatynski 2021-07-20 10:33:52 +01:00
parent 848b83015d
commit 9fe9534e01
2 changed files with 4 additions and 4 deletions

View file

@ -122,14 +122,14 @@ export class ModalManager {
}
public createDialog<T extends any[]>(
Element: React.ComponentType, // eslint-disable-line @typescript-eslint/naming-convention
Element: React.ComponentType,
...rest: ParametersWithoutFirst<ModalManager["createDialogAsync"]>
) {
return this.createDialogAsync<T>(Promise.resolve(Element), ...rest);
}
public appendDialog<T extends any[]>(
Element: React.ComponentType, // eslint-disable-line @typescript-eslint/naming-convention
Element: React.ComponentType,
...rest: ParametersWithoutFirst<ModalManager["appendDialogAsync"]>
) {
return this.appendDialogAsync<T>(Promise.resolve(Element), ...rest);