Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
1ad147596b
commit
87e6f820fd
@@ -609,7 +609,7 @@ function CalendarPage() {
|
||||
) : (
|
||||
<ul className="space-y-2">
|
||||
{dayEvents.map((e) => (
|
||||
<EventRow key={`${e.source}-${e.id}`} evt={e} />
|
||||
<EventRow key={`${e.source}-${e.id}`} evt={e} onEdit={openEdit} />
|
||||
))}
|
||||
</ul>
|
||||
)}
|
||||
@@ -622,7 +622,7 @@ function CalendarPage() {
|
||||
) : (
|
||||
<ul className="space-y-2">
|
||||
{upcoming.map((e) => (
|
||||
<EventRow key={`up-${e.source}-${e.id}`} evt={e} showDate />
|
||||
<EventRow key={`up-${e.source}-${e.id}`} evt={e} showDate onEdit={openEdit} />
|
||||
))}
|
||||
</ul>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user