diff --git a/src/components/Detail/IngredientTableView.astro b/src/components/Detail/IngredientTableView.astro index 5ee0c05..0f2b8c8 100644 --- a/src/components/Detail/IngredientTableView.astro +++ b/src/components/Detail/IngredientTableView.astro @@ -19,7 +19,7 @@ const tableView = true )} {tableView && ( - +
@@ -29,9 +29,9 @@ const tableView = true { - ingredients.map(ing => ( + ingredients.map((ing, index) => ( <> - + @@ -41,4 +41,28 @@ const tableView = true }
Quantity
{ing.quantity} {ing.unit} {ing.name}
-)} \ No newline at end of file +)} + + + + \ No newline at end of file