From a4b626096f8f39bc01934a6dc6c4425780ef18c6 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 23:37:17 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/routes/calendar.index.tsx | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/src/routes/calendar.index.tsx b/src/routes/calendar.index.tsx index 3a62074..9d20d14 100644 --- a/src/routes/calendar.index.tsx +++ b/src/routes/calendar.index.tsx @@ -961,14 +961,25 @@ function WeekStrip({
{dayEvts.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} +
); })}