diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 78e21ae02..d5a3310b7 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -31,10 +31,8 @@ - - + - diff --git a/frontend/src/api/category.js b/frontend/src/api/category.js index 20b72d458..d3a71d860 100644 --- a/frontend/src/api/category.js +++ b/frontend/src/api/category.js @@ -5,13 +5,14 @@ const prefix = baseURL + "categories"; const categoryURLs = { get_all: `${prefix}`, - get_category: (category) => `${prefix}/${category}`, - delete_category: (category) => `${prefix}/${category}`, + get_category: category => `${prefix}/${category}`, + delete_category: category => `${prefix}/${category}`, }; export default { async get_all() { let response = await apiReq.get(categoryURLs.get_all); + console.log("All Cats", response.data); return response.data; }, async get_recipes_in_category(category) { diff --git a/frontend/src/components/Login/LoginDialog.vue b/frontend/src/components/Login/LoginDialog.vue index 5b7eb02be..bf2646f77 100644 --- a/frontend/src/components/Login/LoginDialog.vue +++ b/frontend/src/components/Login/LoginDialog.vue @@ -1,6 +1,6 @@