1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

REmove unused onCancelClick

This commit is contained in:
Richard Lewis
2017-08-18 12:21:48 +01:00
parent 96900e76a0
commit 84f5e5aad2

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() {},
};