chore: deno fmt

This commit is contained in:
Max Richter
2025-11-02 21:58:02 +01:00
parent 21124dfe00
commit c13420c3ab
41 changed files with 324 additions and 254 deletions

View File

@@ -62,15 +62,15 @@ export const IngredientsList: FunctionalComponent<
> = (
{ ingredients, amount, portion },
) => {
return (
<table class="w-full border-collapse table-auto">
<tbody>
{ingredients.map((item) => {
return (
<Ingredient ingredient={item} amount={amount} portion={portion} />
);
})}
</tbody>
</table>
);
};
return (
<table class="w-full border-collapse table-auto">
<tbody>
{ingredients.map((item) => {
return (
<Ingredient ingredient={item} amount={amount} portion={portion} />
);
})}
</tbody>
</table>
);
};