Skip to content

Commit 66f85e8

Browse files
committed
fix: onClick 핸들러 에러 해결
1 parent c9ec450 commit 66f85e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/menu/ui/MyTicketPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ const MyTicketPage = () => {
103103
eventDate={ticket.event.startDate}
104104
location={ticket.event.address}
105105
hashtags={ticket.event.hashtags}
106-
onClick={() => handelEventCardClick}
106+
onClick={() => handelEventCardClick(ticket)}
107107
className={`transition-transform duration-200 ${
108108
isCancelMode && selectedIds.includes(ticket.id) ? 'scale-95 border-2 border-pink-400' : ''
109109
}`}

0 commit comments

Comments
 (0)