diff --git a/frontend/src/components/UI/RecipeCard.vue b/frontend/src/components/UI/RecipeCard.vue index 69afe07ed..8b24594f0 100644 --- a/frontend/src/components/UI/RecipeCard.vue +++ b/frontend/src/components/UI/RecipeCard.vue @@ -3,7 +3,8 @@ {{ name | truncate(30) }} @@ -52,11 +53,6 @@ export default { }, }, methods: { - moreInfo(recipeSlug) { - if (this.route) { - this.$router.push(`/recipe/${recipeSlug}`); - } else this.$emit("click"); - }, getImage(image) { return utils.getImageURL(image); },