diff --git a/components/calendar/EventInfo.tsx b/components/calendar/EventInfo.tsx
index 7041193c3..3fc27a1b1 100644
--- a/components/calendar/EventInfo.tsx
+++ b/components/calendar/EventInfo.tsx
@@ -73,11 +73,17 @@ const EventInfo = ({ event, edit }: EventInfoProps) => {
{imgSrc && }
{event.name}
{event.tags.length > 0 && (
-
+
{event.tags.map((tag) => {
const tagInfo = TAGS.find((tagObj) => tagObj.code === tag)!;
return (
-
+
{tagInfo.name}
);