diff --git a/src/components/views/dialogs/DeactivateAccountDialog.js b/src/components/views/dialogs/DeactivateAccountDialog.js index 8e5db11cf0..703ecaf092 100644 --- a/src/components/views/dialogs/DeactivateAccountDialog.js +++ b/src/components/views/dialogs/DeactivateAccountDialog.js @@ -1,5 +1,6 @@ /* Copyright 2016 OpenMarket Ltd +Copyright 2019 The Matrix.org Foundation C.I.C. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -21,15 +22,12 @@ import sdk from '../../../index'; import Analytics from '../../../Analytics'; import MatrixClientPeg from '../../../MatrixClientPeg'; import * as Lifecycle from '../../../Lifecycle'; -import Velocity from 'velocity-animate'; import { _t } from '../../../languageHandler'; export default class DeactivateAccountDialog extends React.Component { constructor(props, context) { super(props, context); - this._passwordField = null; - this._onOk = this._onOk.bind(this); this._onCancel = this._onCancel.bind(this); this._onPasswordFieldChange = this._onPasswordFieldChange.bind(this); @@ -78,7 +76,6 @@ export default class DeactivateAccountDialog extends React.Component { // https://matrix.org/jira/browse/SYN-744 if (err.httpStatus === 401 || err.httpStatus === 403) { errStr = _t('Incorrect password'); - Velocity(this._passwordField, "callout.shake", 300); } this.setState({ busy: false, @@ -181,7 +178,6 @@ export default class DeactivateAccountDialog extends React.Component { label={_t('Password')} onChange={this._onPasswordFieldChange} value={this.state.password} - ref={(e) => {this._passwordField = e;}} className={passwordBoxClass} />