Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-gavrilescu committed Aug 5, 2024
1 parent b496465 commit e8b973f
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { hideModal, hangUp } from 'common/app-state';
import { hangUp, hideModal } from 'common/app-state';
import { Button, Modal } from 'common/ui';

import PropTypes from 'prop-types';
import React from 'react';
import { withTranslation } from 'react-i18next';
Expand All @@ -12,6 +11,7 @@ import { connect } from 'react-redux';
export class HangupModal extends React.Component {
static propTypes = {
onClose: PropTypes.func,
onHangup: PropTypes.func,
t: PropTypes.func
};

Expand All @@ -38,12 +38,12 @@ export class HangupModal extends React.Component {
<Button
appearance = 'primary'
className = 'hangup-button'
color='secondary'
color = 'secondary'
onClick = { this.props.onHangup }
qaId = 'hangup-button'>
{ t('hangup.button') }
{ t('hangup.button') }
</Button>
</div>
</div>
</div>
</Modal>
);
Expand All @@ -69,4 +69,4 @@ function mapDispatchToProps(dispatch) {
};
}

export default connect(null, mapDispatchToProps)(withTranslation()(HangupModal));
export default connect(null, mapDispatchToProps)(withTranslation()(HangupModal));

0 comments on commit e8b973f

Please sign in to comment.