linting: replace deprecated Leaflet e.layer with e.propagatedFrom

The  property on LeafletEvent is deprecated in Leaflet 1.9.x and will be removed in Leaflet 2.0. Use  instead, which is functionally identical.
This commit is contained in:
mahula 2025-12-03 21:28:59 +01:00
parent f5739355d6
commit c687a0d8aa

View File

@ -345,7 +345,7 @@ export function UtopiaMapInner({
eventHandlers={{
click: (e) => {
if (selectNewItemPosition) {
e.layer.closePopup()
e.propagatedFrom.closePopup()
setMapClicked({ position: e.latlng, setItemFormPopup: setPopupForm })
}
},