diff --git a/src/App.tsx b/src/App.tsx
index fe84b86..2308d8d 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -75,7 +75,7 @@ function App() {
We highlight what matters
{isSignedIn ? (
-
Past feedback
+
Feedback
) : (
Join Us
)}
diff --git a/src/components/FeedbackGallery.tsx b/src/components/FeedbackGallery.tsx
index 3799057..8fd694c 100644
--- a/src/components/FeedbackGallery.tsx
+++ b/src/components/FeedbackGallery.tsx
@@ -54,41 +54,26 @@ export default function Feedback() {
return (
<>
{message &&
{message}
}
-
- {allFeedback.map((item, index) => (
-
- {item.job_name}
-
-
-
-
- ))}
-
-
- {/* {allFeedback.length > 0 && (
-
+ {allFeedback.length > 0 ? (
+
{allFeedback.map((item, index) => (
- - {item.job_name}
-
-
- ))}
-
-
-
- Is it accessible?
+
+ {item.job_name}
- Yes. It adheres to the WAI-ARIA design pattern.
+
-
-
- )} */}
+ ))}
+
+ ) : (
+
You don't have any saved feedback yet...
+ )}
>
);
}