(e: TouchEvent)
| 250 | } |
| 251 | }; |
| 252 | const onTouchStart = (e: TouchEvent) => { |
| 253 | touchStartY = e.touches[0]?.clientY ?? 0; |
| 254 | }; |
| 255 | const onTouchMove = (e: TouchEvent) => { |
| 256 | const y = e.touches[0]?.clientY ?? 0; |
| 257 | if (y > touchStartY + 12) { |
nothing calls this directly
no outgoing calls
no test coverage detected