diff --git a/src/Modal.tsx b/src/Modal.tsx index da4c8ae732..1e84078ddb 100644 --- a/src/Modal.tsx +++ b/src/Modal.tsx @@ -122,14 +122,14 @@ export class ModalManager { } public createDialog( - Element: React.ComponentType, // eslint-disable-line @typescript-eslint/naming-convention + Element: React.ComponentType, ...rest: ParametersWithoutFirst ) { return this.createDialogAsync(Promise.resolve(Element), ...rest); } public appendDialog( - Element: React.ComponentType, // eslint-disable-line @typescript-eslint/naming-convention + Element: React.ComponentType, ...rest: ParametersWithoutFirst ) { return this.appendDialogAsync(Promise.resolve(Element), ...rest); diff --git a/src/components/views/dialogs/AskInviteAnywayDialog.tsx b/src/components/views/dialogs/AskInviteAnywayDialog.tsx index 7445296378..3ae82f1026 100644 --- a/src/components/views/dialogs/AskInviteAnywayDialog.tsx +++ b/src/components/views/dialogs/AskInviteAnywayDialog.tsx @@ -60,8 +60,8 @@ export default class AskInviteAnywayDialog extends React.Component { contentId='mx_Dialog_content' >
- { /* eslint-disable-next-line */ } -

{_t("Unable to find profiles for the Matrix IDs listed below - would you like to invite them anyway?")}

+

{ _t("Unable to find profiles for the Matrix IDs listed below - " + + "would you like to invite them anyway?") }

    { errorList }