mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 18:23:18 -04:00 
			
		
		
		
	fix: Remove Recipes From Cookbook API (#5899)
This commit is contained in:
		| @@ -70,7 +70,7 @@ import RecipeCardSection from "@/components/Domain/Recipe/RecipeCardSection.vue" | ||||
| import { useCookbookStore } from "~/composables/store/use-cookbook-store"; | ||||
| import { useCookbook } from "~/composables/use-group-cookbooks"; | ||||
| import { useLoggedInState } from "~/composables/use-logged-in-state"; | ||||
| import type { RecipeCookBook } from "~/lib/api/types/cookbook"; | ||||
| import type { ReadCookBook } from "~/lib/api/types/cookbook"; | ||||
| import CookbookEditor from "~/components/Domain/Cookbook/CookbookEditor.vue"; | ||||
|  | ||||
| const $auth = useMealieAuth(); | ||||
| @@ -100,7 +100,7 @@ const dialogStates = reactive({ | ||||
|   edit: false, | ||||
| }); | ||||
|  | ||||
| const editTarget = ref<RecipeCookBook | null>(null); | ||||
| const editTarget = ref<ReadCookBook | null>(null); | ||||
| function handleEditCookbook() { | ||||
|   dialogStates.edit = true; | ||||
|   editTarget.value = book.value; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user