fix: ensure delta value is absolute in Drawer component

The fix ensures that the calculation of the 'movement' value in the Drawer component doesn't result in a negative number. The division by 'dragState.delta' is now divided by the absolute value to prevent faulty calculations.
This commit is contained in:
p-sw 2024-06-05 19:16:42 +09:00
parent 7b17e6df9b
commit ffe49ff90f

View File

@ -261,7 +261,7 @@ const DrawerContent = forwardRef<HTMLDivElement, DrawerContentProps>(
movement < 0)
) {
movement =
movement / (dragState.delta === 0 ? 1 : dragState.delta);
movement / Math.abs(dragState.delta === 0 ? 1 : dragState.delta);
}
return {
...prev,