Skip to content

Commit

Permalink
Remove unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
bplmp committed Aug 8, 2018
1 parent ada3c06 commit ea91a3f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
4 changes: 0 additions & 4 deletions src/containers/AddressInput/AddressInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ export class AddressInput extends React.Component {
}

render() {
const inputAddress = this.state.inputAddress;
const geocodedAddress = this.state.geocodedAddress;
const geocodedAddressLat = this.state.geocodedAddressLat;
const geocodedAddressLng = this.state.geocodedAddressLng;
return (
<div>
<BackButton />
Expand Down
2 changes: 0 additions & 2 deletions src/containers/DateOfBirthForm/SelectDate.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { SubBanner } from "components/SubBanner";
import STRINGS from 'configs/Strings';
import GLOBALS from 'configs/MainConfigs';
import calculatePreschoolGroup from 'utils/calculatePreschoolGroup';
import monthDiff from 'utils/monthDiff';
import generateMonthsOptions from 'utils/generateMonthsOptions';
import generateYearsOptions from 'utils/generateYearsOptions';
import composeDateOfBirthMsg from 'utils/composeDateOfBirthMsg';
Expand Down Expand Up @@ -68,7 +67,6 @@ export class SelectDate extends React.Component {
render() {
const dateSelected = (this.state.monthOfBirth && this.state.yearOfBirth) ? true : false;
const preeschoolCalcError = this.state.preeschoolCalcError;
const preschoolGroupName = this.state.preschoolGroupName;
return (
<div>
<select className="default-select" id="month-of-birth" value={this.state.monthOfBirth} onChange={this.setMonth}>
Expand Down

0 comments on commit ea91a3f

Please sign in to comment.