diff --git a/src/routes/calendar.index.tsx b/src/routes/calendar.index.tsx index dc69a97..3a62074 100644 --- a/src/routes/calendar.index.tsx +++ b/src/routes/calendar.index.tsx @@ -883,17 +883,25 @@ function MonthGrid({
{dayEvts.slice(0, 3).map((e) => { const meta = typeMeta(e.event_type); + const initials = ownerInitials(e.owner_name); return (
- {!e.all_day && formatInEST(e.start, "h:mma ")} - {e.title} + {initials && ( + + {initials} + + )} + + {!e.all_day && formatInEST(e.start, "h:mma ")} + {e.title} +
); })}