We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfae0bc commit 4663bd9Copy full SHA for 4663bd9
src/widgets/dashboard/ui/ticket/TicketItem.tsx
@@ -15,7 +15,7 @@ const TicketItem = ({ ticket }: { ticket: ReadTicketResponse }) => {
15
drag="x"
16
dragConstraints={{ left: -80, right: 0 }}
17
onDragStart={() => setIsDragging(true)}
18
- onDragEnd={(event, info) => {
+ onDragEnd={(_, info) => {
19
if (info.offset.x < -50) {
20
setIsDragging(true);
21
} else {
0 commit comments