checkpoint

This commit is contained in:
fred 2025-07-09 14:43:45 -07:00
parent 925135d08c
commit 22e2dab830
7 changed files with 155 additions and 2 deletions

View file

@ -46,7 +46,7 @@ function Cookbook() {
) : (
<div className="recipes-grid">
{recipes.map((recipe: Recipe) => (
<CookbookRecipeTile recipe={recipe} key={recipe.id} handleDelete={handleDelete} />
<CookbookRecipeTile recipe={recipe} key={recipe.details.id} handleDelete={handleDelete} />
))}
</div>
)}