diff --git a/apps/web/components/recipe/recipes-grid.tsx b/apps/web/components/recipe/recipes-grid.tsx
index 992a948..99178c6 100644
--- a/apps/web/components/recipe/recipes-grid.tsx
+++ b/apps/web/components/recipe/recipes-grid.tsx
@@ -258,14 +258,16 @@ function CompactRow({ recipe, selected, selectMode }: { recipe: Recipe; selected
{recipe.title}
- {recipe.isBatchCook && recipe.dishCount ? (
- {tBatch("dishCount", { count: recipe.dishCount })}
- ) : (
- {recipe.baseServings}
- )}
- {totalMins > 0 && (
- {t("total", { mins: totalMins })}
- )}
+
+ {recipe.isBatchCook && recipe.dishCount ? (
+ <>{tBatch("dishCount", { count: recipe.dishCount })}>
+ ) : (
+ <>{recipe.baseServings}>
+ )}
+
+
+ {totalMins > 0 && (<>{t("total", { mins: totalMins })}>)}
+
{recipe.difficulty && (
{t(`difficulty.${recipe.difficulty}`)}