This commit is contained in:
Jake Kasper
2025-09-05 09:42:44 -04:00
parent 0a32836ff6
commit 808e4a8a96

View File

@@ -412,7 +412,7 @@ const Watering = () => {
});
return (
<React.Fragment key={pt.id}>
<Marker position={[pt.lat, pt.lng]} draggable={true}
<Marker position={[Number(pt.lat), Number(pt.lng)]} draggable={true}
eventHandlers={{
dragend: (e)=>{
const ll = e.target.getLatLng();