diff --git a/src/components/DreamCard.tsx b/src/components/DreamCard.tsx index 9252845..21e6e15 100644 --- a/src/components/DreamCard.tsx +++ b/src/components/DreamCard.tsx @@ -55,15 +55,17 @@ export default function DreamCard({dream, user, animationDelay = 0}: DreamCardPr {formatDateWithTime(dream.date)}

- {/* Display dream type as a tag */} - - {dream.input.inputType} - + {/* Display dream tags */} + {dream.tags.map((tag, index) => ( + + {tag} + + ))}