diff --git a/src/components/views/dialogs/ConfirmRedactDialog.js b/src/components/views/dialogs/ConfirmRedactDialog.js index 7b5a9f776b..a967b5df9a 100644 --- a/src/components/views/dialogs/ConfirmRedactDialog.js +++ b/src/components/views/dialogs/ConfirmRedactDialog.js @@ -16,7 +16,6 @@ limitations under the License. import React from 'react'; import sdk from '../../../index'; -import classnames from 'classnames'; import { _t } from '../../../languageHandler'; /* @@ -24,51 +23,17 @@ import { _t } from '../../../languageHandler'; */ export default React.createClass({ displayName: 'ConfirmRedactDialog', - propTypes: { - onFinished: React.PropTypes.func.isRequired, - }, - - defaultProps: { - danger: false, - }, - - onOk: function() { - this.props.onFinished(true); - }, - - onCancel: function() { - this.props.onFinished(false); - }, render: function() { - const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog'); - - const title = _t("Confirm Removal"); - - const confirmButtonClass = classnames({ - 'mx_Dialog_primary': true, - 'danger': false, - }); - + const QuestionDialog = sdk.getComponent('views.dialogs.QuestionDialog'); return ( - -
- { _t("Are you sure you wish to remove (delete) this event? " + - "Note that if you delete a room name or topic change, it could undo the change.") } -
-
- - - -
-
+ + ); }, });