feat: add servings field to Recipe model and implement inventory comparison functionality

This commit is contained in:
Nils-Johan Gynther
2026-04-17 18:48:08 +02:00
parent 8a86b0aebd
commit 8e0aed032c
10 changed files with 260 additions and 20 deletions
+1
View File
@@ -100,6 +100,7 @@ export type Recipe = {
description: string | null;
instructions: string | null;
imageUrl: string | null;
servings: number | null;
createdAt: string;
updatedAt: string;
ingredients: RecipeIngredient[];