Skip to content

Commit

Permalink
eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iRaySpace committed Feb 21, 2019
1 parent 38320eb commit 5d9f660
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/stories/components/BreakdownModalComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ import ModalKeypadComponent from "./ModalKeypadComponent";
let MoneyCurrency = require("money-currencies");

export default class BreakdownModalComponent extends React.PureComponent {

onDeletePress = () => this.props.onDeletePress()
onChangeActualMoney = (text) => this.props.onChangeActualMoney(text)
onDeletePress = () => this.props.onDeletePress();
onChangeActualMoney = text => this.props.onChangeActualMoney(text);

render() {
let mc = new MoneyCurrency(
Expand Down

0 comments on commit 5d9f660

Please sign in to comment.