REmove unused onCancelClick

pull/21833/head
Richard Lewis 2017-08-18 12:21:48 +01:00
parent 96900e76a0
commit 84f5e5aad2
1 changed files with 0 additions and 7 deletions

View File

@ -64,11 +64,6 @@ export default class ManageIntegsButton extends React.Component {
src: (this.scalarClient !== null && this.scalarClient.hasCredentials()) ?
this.scalarClient.getScalarInterfaceUrlForRoom(this.props.roomId) :
null,
onFinished: ()=>{
if (this.props.onCancelClick) {
this.props.onCancelClick(ev);
}
},
}, "mx_IntegrationsManager");
}
@ -119,9 +114,7 @@ export default class ManageIntegsButton extends React.Component {
ManageIntegsButton.propTypes = {
roomId: PropTypes.string.isRequired,
onCancelClick: PropTypes.func,
};
ManageIntegsButton.defaultProps = {
onCancelClick: function() {},
};