diff --git a/src/component/foodcardlist/pantry/PantryStart.jsx b/src/component/foodcardlist/pantry/PantryStart.jsx
index be21fdf..43abb36 100644
--- a/src/component/foodcardlist/pantry/PantryStart.jsx
+++ b/src/component/foodcardlist/pantry/PantryStart.jsx
@@ -176,7 +176,11 @@ const PantryStart = () => {
My Pantry
-
+ {ingredients.length === 0 && (
+
+ No ingredients, add some!
+
+ )}
{ingredients.filter(main => {
return (main.name.toLowerCase().indexOf(filter) !== -1)
diff --git a/src/component/foodcardlist/whatsfordinner/WhatsForDinnerStart.jsx b/src/component/foodcardlist/whatsfordinner/WhatsForDinnerStart.jsx
index 378ac98..9b5b699 100644
--- a/src/component/foodcardlist/whatsfordinner/WhatsForDinnerStart.jsx
+++ b/src/component/foodcardlist/whatsfordinner/WhatsForDinnerStart.jsx
@@ -55,7 +55,11 @@ const WhatsForDinnerStart = () => {
What's For Dinner
-
+ {recipes.length === 0 && (
+
+ Add some ingredients in the pantry to see what is for dinner!
+
+ )}
{recipes.filter((main) => main.title.toLowerCase().indexOf(filter) !== -1)
.map((item) => (
diff --git a/src/component/social/review/ReviewFocus.jsx b/src/component/social/review/ReviewFocus.jsx
index d120218..13f094d 100644
--- a/src/component/social/review/ReviewFocus.jsx
+++ b/src/component/social/review/ReviewFocus.jsx
@@ -60,24 +60,30 @@ const ReviewFocus = () => {
}, [makeUpdate]);
const imageListStyle = {
- display: 'flex',
flexWrap: 'nowrap',
- justifyContent: 'space-around'
- }
+ transform: 'translateZ(0)',
+ };
return (
<>
-
-
- {pictures.map((picUrl, i) => (
-
- {/* */}
-
+
+
+ {pictures.map((picUrl) => (
+
+
+ {/*
*/}
))}
-
+
{reviewData.headline}