diff --git a/src/components/Detail/StepIngredientSideView.astro b/src/components/Detail/StepIngredientSideView.astro index 5b6c7dd..b4cdc49 100644 --- a/src/components/Detail/StepIngredientSideView.astro +++ b/src/components/Detail/StepIngredientSideView.astro @@ -10,7 +10,7 @@ const ings = await Promise.all(
{ings.map(i => ( -
+

• {i.quantity} {i.unit || " "} {i.name}

))} diff --git a/src/components/Detail/StepView.astro b/src/components/Detail/StepView.astro index 7b8df3a..1860721 100644 --- a/src/components/Detail/StepView.astro +++ b/src/components/Detail/StepView.astro @@ -15,7 +15,7 @@ const { steps, class: className } = Astro.props

{s.instruction}

{s.ingredients && s.ingredients.length > 0 && ( -
+
)}