From c9aced0180053d70d7576114cdd8a2a166027420 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Sun, 25 Aug 2024 23:46:07 +0530 Subject: [PATCH] fix: format --- .../molecules/InterpretationLog.tsx | 56 +++++++++---------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/src/components/molecules/InterpretationLog.tsx b/src/components/molecules/InterpretationLog.tsx index f7f98d9e..83486b65 100644 --- a/src/components/molecules/InterpretationLog.tsx +++ b/src/components/molecules/InterpretationLog.tsx @@ -151,34 +151,34 @@ export const InterpretationLog = () => { - - - - Dessert (100g serving) - Calories - Fat (g) - Carbs (g) - Protein (g) - - - - {rows.map((row) => ( - - - {row.name} - - {row.calories} - {row.fat} - {row.carbs} - {row.protein} - - ))} - -
-
+ + + + Dessert (100g serving) + Calories + Fat (g) + Carbs (g) + Protein (g) + + + + {rows.map((row) => ( + + + {row.name} + + {row.calories} + {row.fat} + {row.carbs} + {row.protein} + + ))} + +
+ ) : null }