From 86bcee58ce2da75064a54a95950cc3eccaf5edd9 Mon Sep 17 00:00:00 2001 From: Vincent Date: Tue, 31 Mar 2020 16:08:52 +1100 Subject: [PATCH] lint --- stylesheets/_session_password.scss | 5 +++-- ts/components/DevicePairingDialog.tsx | 4 +--- ts/components/conversation/UpdateGroupMembersDialog.tsx | 4 ++-- ts/components/session/SessionPasswordPrompt.tsx | 6 ++++-- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/stylesheets/_session_password.scss b/stylesheets/_session_password.scss index ecd391bb8..98d548277 100644 --- a/stylesheets/_session_password.scss +++ b/stylesheets/_session_password.scss @@ -1,7 +1,8 @@ .password { height: 100vh; - - .clear-data, .password-prompt { + + .clear-data, + .password-prompt { &-wrapper { display: flex; justify-content: center; diff --git a/ts/components/DevicePairingDialog.tsx b/ts/components/DevicePairingDialog.tsx index c19640f86..b87d43b6e 100644 --- a/ts/components/DevicePairingDialog.tsx +++ b/ts/components/DevicePairingDialog.tsx @@ -148,9 +148,7 @@ export class DevicePairingDialog extends React.Component {
{this.renderErrors()}

{window.i18n('waitingForDeviceToRegister')}

- - {window.i18n('pairNewDevicePrompt')} - + {window.i18n('pairNewDevicePrompt')}
diff --git a/ts/components/conversation/UpdateGroupMembersDialog.tsx b/ts/components/conversation/UpdateGroupMembersDialog.tsx index 98ef15e0e..00b51ddea 100644 --- a/ts/components/conversation/UpdateGroupMembersDialog.tsx +++ b/ts/components/conversation/UpdateGroupMembersDialog.tsx @@ -120,7 +120,7 @@ export class UpdateGroupMembersDialog extends React.Component { {`${checkMarkedCount} members`} -
+
)} @@ -135,7 +135,7 @@ export class UpdateGroupMembersDialog extends React.Component { )})`}

- +
diff --git a/ts/components/session/SessionPasswordPrompt.tsx b/ts/components/session/SessionPasswordPrompt.tsx index a7a218616..01bb0f9e1 100644 --- a/ts/components/session/SessionPasswordPrompt.tsx +++ b/ts/components/session/SessionPasswordPrompt.tsx @@ -16,7 +16,7 @@ interface State { export class SessionPasswordPrompt extends React.PureComponent<{}, State> { private readonly inputRef: React.RefObject; - + constructor(props: any) { super(props); @@ -162,7 +162,9 @@ export class SessionPasswordPrompt extends React.PureComponent<{}, State> { } private async initLogin() { - const passPhrase = String((this.inputRef.current as HTMLInputElement).value); + const passPhrase = String( + (this.inputRef.current as HTMLInputElement).value + ); await this.onLogin(passPhrase); }