fixed the rest of it too

This commit is contained in:
June 2025-08-16 13:09:13 +12:00
parent ba237d645e
commit 914633a793
Signed by: breadone
GPG Key ID: FDC19FE143200483

View File

@ -22,12 +22,12 @@ const re = await client.getRecipe(recipeid as string)
<InfoView re={re} /> <InfoView re={re} />
<p class="text-[22pt] font-bold 'md:mt-4'">Ingredients</p> <p class="text-[22pt] font-bold 'md:mt-4'">Ingredients</p>
<IngredientTableView class:list={['md:w-80', 'px-4']} ingredients={re.expand.ingredients} /> <IngredientTableView class:list={['md:w-80', 'px-4']} ingredients={re.expand.ingredients ?? []} />
</div> </div>
<div class="flex mt-4 md:flex-2/3 w-full flex-col"> <div class="flex mt-4 md:flex-2/3 w-full flex-col">
<!-- Steps --> <!-- Steps -->
<StepView class="md:ml-3" steps={re.expand.steps} /> <StepView class="md:ml-3" steps={re.expand.steps ?? []} />
</div> </div>
</div> </div>