Skip to content

Commit 4663bd9

Browse files
committed
fix: 사용하지 않는 매개변수 event 에러 해결
1 parent cfae0bc commit 4663bd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/widgets/dashboard/ui/ticket/TicketItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const TicketItem = ({ ticket }: { ticket: ReadTicketResponse }) => {
1515
drag="x"
1616
dragConstraints={{ left: -80, right: 0 }}
1717
onDragStart={() => setIsDragging(true)}
18-
onDragEnd={(event, info) => {
18+
onDragEnd={(_, info) => {
1919
if (info.offset.x < -50) {
2020
setIsDragging(true);
2121
} else {

0 commit comments

Comments
 (0)