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}
+
);
})}