Making Stuffs

Results 4 comments of Making Stuffs

Has anyone got any update or alternative?

Complete hack, but this works: ``` const handleTouchEnd = (event) => { event.preventDefault(); const slider = document.querySelector(".SLIDER_WRAPPER"); slider?.removeEventListener("touchmove", handleTouchMove); slider?.removeEventListener("touchend", handleTouchEnd); }; const handleTouchMove = (event) => { event.preventDefault(); };...

@MichaReiser ah I did notice that there was the `--apply-suggested` flag which can be added if you run `rome` and that does apply the fixes also. Makes perfect sense (the...

@MichaReiser Ok great I will close this as you are already working on the implementation and it isn't so much a bug :) thanks for your help mate, appreciate it...