Skip to content

Commit

Permalink
chore: refactor travis file for final push
Browse files Browse the repository at this point in the history
- refactor travis file
  • Loading branch information
Billmike committed Feb 10, 2018
1 parent 58e4985 commit ae5ee17
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion client/src/components/Favorites.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ class Favorites extends Component {

favoriteRecipes(event) {
event.preventDefault();
console.log('Props called here', this.props);
this.props.startAddFavoriteRecipes(this.props.recipes[0].id);
}

Expand Down
1 change: 0 additions & 1 deletion client/src/components/Hompage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class Homepage extends Component {
}

render() {
console.log(this.props.recipes)
let allRecipes;
if (this.props.recipes) {
allRecipes = this.props.recipes.map((recipe, i) => {
Expand Down
2 changes: 0 additions & 2 deletions client/src/components/RecipeDetails.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ class RecipeDetail extends Component {
};

componentWillMount() {
console.log('detials props', this.props);
this.props.startGetOneRecipe(this.props.match.params.id);
}

Expand Down Expand Up @@ -64,7 +63,6 @@ class RecipeDetail extends Component {
}

render() {
console.log('Ingredients type', typeof this.props.recipe.ingredients);
let reviews;
let splitIngredients;
let splitInstructions;
Expand Down

0 comments on commit ae5ee17

Please sign in to comment.