diff --git a/components/cycle-day/symptoms/bleeding.js b/components/cycle-day/symptoms/bleeding.js index 3f7df98..faebf1b 100644 --- a/components/cycle-day/symptoms/bleeding.js +++ b/components/cycle-day/symptoms/bleeding.js @@ -16,7 +16,6 @@ export default class Bleeding extends Component { super(props) const cycleDay = props.cycleDay this.bleeding = cycleDay && cycleDay.bleeding - this.makeActionButtons = props.makeActionButtons this.state = { currentValue: this.bleeding && this.bleeding.value, exclude: this.bleeding ? this.bleeding.exclude : false diff --git a/components/cycle-day/symptoms/cervix.js b/components/cycle-day/symptoms/cervix.js index c47cfe0..457c914 100644 --- a/components/cycle-day/symptoms/cervix.js +++ b/components/cycle-day/symptoms/cervix.js @@ -16,7 +16,6 @@ export default class Cervix extends Component { super(props) const cycleDay = props.cycleDay this.cervix = cycleDay && cycleDay.cervix - this.makeActionButtons = props.makeActionButtons this.state = this.cervix ? this.cervix : {} } diff --git a/components/cycle-day/symptoms/desire.js b/components/cycle-day/symptoms/desire.js index cc3b536..6c20bf0 100644 --- a/components/cycle-day/symptoms/desire.js +++ b/components/cycle-day/symptoms/desire.js @@ -15,7 +15,6 @@ export default class Desire extends Component { super(props) const cycleDay = props.cycleDay this.desire = cycleDay && cycleDay.desire - this.makeActionButtons = props.makeActionButtons const desireValue = this.desire && this.desire.value this.state = { currentValue: desireValue } } diff --git a/components/cycle-day/symptoms/mucus.js b/components/cycle-day/symptoms/mucus.js index ff5865e..e46acb2 100644 --- a/components/cycle-day/symptoms/mucus.js +++ b/components/cycle-day/symptoms/mucus.js @@ -17,7 +17,6 @@ export default class Mucus extends Component { super(props) const cycleDay = props.cycleDay this.mucus = cycleDay && cycleDay.mucus - this.makeActionButtons = props.makeActionButtons this.state = this.mucus ? this.mucus : {} } diff --git a/components/cycle-day/symptoms/note.js b/components/cycle-day/symptoms/note.js index 491061b..4df8a55 100644 --- a/components/cycle-day/symptoms/note.js +++ b/components/cycle-day/symptoms/note.js @@ -17,7 +17,6 @@ export default class Note extends Component { super(props) const cycleDay = props.cycleDay this.note = cycleDay && cycleDay.note - this.makeActionButtons = props.makeActionButtons this.state = { currentValue: this.note && this.note.value || ''