Add missing key to list

This commit is contained in:
araemer 2025-11-19 20:51:20 +01:00
parent c3998ca039
commit ba054ef2b9

View file

@ -123,6 +123,7 @@ export default function RecipeDetailPage() {
<ul>
{recipeWorkingCopy.ingredientGroupList.map((group, i) => (
<IngredientGroupDisplayListItem
key={i}
index={i}
groupModel={group}
/>