Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
Address review comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
wbprice committed Jul 7, 2017
1 parent 5c3f585 commit 0b164cb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/js/components/ecosystems/LocationForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class LocationForm extends Component {
<TextField
label="Locate Using Address"
name="address"
value={this.state.value}
value={this.state.address}
onChange={this.updateAddress.bind(this)}
button={
<button
Expand Down
1 change: 0 additions & 1 deletion frontend/js/components/environments/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ class Home extends Component {
}

Home.propTypes = {
user: PropTypes.object,
pickSurvey: PropTypes.object,
dispatch: PropTypes.func
};
Expand Down
1 change: 1 addition & 0 deletions frontend/js/redux/reducers/pick-survey-reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export default function surveyReducer(state = initialState, action) {
});
case GET_LOCATION_BY_GPS_FAILURE:
return Object.assign({}, state, {
isFetching: false,
status: {
message: 'There was an error finding you with GPS.\nTry searching with an address?',
level: 'danger'
Expand Down

0 comments on commit 0b164cb

Please sign in to comment.