(e)
| 57 | } |
| 58 | }, |
| 59 | mouseup(e) { |
| 60 | if (firstPoint) { |
| 61 | onDrawChange(new L.LatLngBounds(firstPoint, e.latlng)); |
| 62 | onChange( |
| 63 | new L.LatLngBounds(adjustLng(firstPoint), adjustLng(e.latlng)) |
| 64 | ); |
| 65 | setFirstPoint(null); |
| 66 | } |
| 67 | }, |
| 68 | }); |
| 69 | |
| 70 | useEffect(() => { |
nothing calls this directly
no test coverage detected