File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ const MyTicketPage = () => {
5050 }
5151 } ;
5252
53- const handelEventCardClick = ( ticket : OrderTicketResponse ) => {
53+ const handleEventCardClick = ( ticket : OrderTicketResponse ) => {
5454 if ( isCancelMode ) {
5555 setSelectedIds ( prev => ( prev . includes ( ticket . id ) ? prev . filter ( id => id !== ticket . id ) : [ ...prev , ticket . id ] ) ) ;
5656 } else {
@@ -103,7 +103,7 @@ const MyTicketPage = () => {
103103 eventDate = { ticket . event . startDate }
104104 location = { ticket . event . address }
105105 hashtags = { ticket . event . hashtags }
106- onClick = { ( ) => handelEventCardClick ( ticket ) }
106+ onClick = { ( ) => handleEventCardClick ( ticket ) }
107107 className = { `transition-transform duration-200 ${
108108 isCancelMode && selectedIds . includes ( ticket . id ) ? 'scale-95 border-2 border-pink-400' : ''
109109 } `}
You can’t perform that action at this time.
0 commit comments