Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 23:17:09 +00:00
co-authored by renee-png
parent afde604672
commit b9f0a5c58d
+6 -1
View File
@@ -605,7 +605,12 @@ function CalendarPage() {
onSelectDay={(d) => setSelected(d)}
/>
) : view === "list" ? (
<ListView events={visibleEvents} onEdit={openEdit} />
<ListView
events={visibleEvents}
onEdit={openEdit}
staff={staff}
onBulkUpdated={reload}
/>
) : null}
</Card>