()
| 247 | } |
| 248 | |
| 249 | function clearClickTimer() { |
| 250 | if (clickTimerRef.current == null) { |
| 251 | return; |
| 252 | } |
| 253 | window.clearTimeout(clickTimerRef.current); |
| 254 | clickTimerRef.current = null; |
| 255 | } |
| 256 | |
| 257 | function resetGraph() { |
| 258 | shouldFitViewRef.current = true; |
no outgoing calls
no test coverage detected