diff --git a/front/packages/ui/src/player/components/hover.tsx b/front/packages/ui/src/player/components/hover.tsx index f6c9cdb7..6d3f70c1 100644 --- a/front/packages/ui/src/player/components/hover.tsx +++ b/front/packages/ui/src/player/components/hover.tsx @@ -286,7 +286,10 @@ export const HoverTouch = ({ children, ...props }: { children: ReactNode }) => { }} onPress={(e) => { e.preventDefault(); - onAnyPress({ pointerType: isTouch ? "touch" : "mouse", x: e.nativeEvent.locationX ?? e.nativeEvent.pageX }); + onAnyPress({ + pointerType: isTouch ? "touch" : "mouse", + x: e.nativeEvent.locationX ?? e.nativeEvent.pageX, + }); }} onLayout={(e) => { playerWidth.current = e.nativeEvent.layout.width;