diff --git a/src/components/Draggable.tsx b/src/components/Draggable.tsx index 6c04f3a..7a35d9f 100644 --- a/src/components/Draggable.tsx +++ b/src/components/Draggable.tsx @@ -63,14 +63,14 @@ export const Draggable: FunctionComponent> = ( { // translateX: offset.x.value, translateX: - isActive || isSleeping + isActive || isSleeping || isActing ? offset.x.value : withSpring(offset.x.value, { damping: 100, stiffness: 1000 }), }, { // translateY: offset.y.value, translateY: - isActive || isSleeping + isActive || isSleeping || isActing ? offset.y.value : withSpring(offset.y.value, { damping: 100, stiffness: 1000 }), },