(e: WheelEvent)
| 245 | let touchStartY = 0; |
| 246 | |
| 247 | const onWheel = (e: WheelEvent) => { |
| 248 | if (e.deltaY < 0) { |
| 249 | userScrolledUpRef.current = true; |
| 250 | } |
| 251 | }; |
| 252 | const onTouchStart = (e: TouchEvent) => { |
| 253 | touchStartY = e.touches[0]?.clientY ?? 0; |
| 254 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected