Skip to content

Commit 7f1213d

Browse files
committed
fix: 사용하지 않는 매개변수 event 에러 해결
1 parent a5fa0ce commit 7f1213d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)