Skip to content

Commit

Permalink
remove localhost url
Browse files Browse the repository at this point in the history
  • Loading branch information
Billmike committed Feb 18, 2018
1 parent c99ec68 commit 407ddbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/actions/recipes.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ export const startAddRecipe = (recipeData = {}) => (dispatch) => {
*/

export const startGetUserRecipes = () => dispatch => axios
.get('http://localhost:8000/api/v1/users/recipes')
.get('/api/v1/users/recipes')
.then((res) => {
dispatch(getUserRecipe(res.data.recipeData));
})
Expand Down

0 comments on commit 407ddbc

Please sign in to comment.