Skip to content

Commit

Permalink
removed-logs
Browse files Browse the repository at this point in the history
  • Loading branch information
IkkiOcean committed Nov 8, 2024
1 parent 494843f commit c1dec11
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion backend/Controllers/RecipeController.js
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,6 @@ const addComment = async (req, res) => {
const getComments = async (req, res) => {
try {
const { recipeId } = req.params;
console.log("Fetching comments for recipe:", recipeId);

// Ensure the recipe exists
const recipe = await Recipe.findById(recipeId);
Expand Down
1 change: 0 additions & 1 deletion frontend/src/Pages/UpdateRecipe.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,6 @@ const UpdateRecipe = () => {
if (selectedImage === null) {
submitable = false;
}
console.log(form)

if (submitable) {
axios
Expand Down

0 comments on commit c1dec11

Please sign in to comment.