diff --git a/client/src/actions/recipes.js b/client/src/actions/recipes.js index 8f8b2f7..c95b0f8 100644 --- a/client/src/actions/recipes.js +++ b/client/src/actions/recipes.js @@ -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)); })