This commit is contained in:
Jake Kasper
2025-08-27 10:21:56 -04:00
parent afd701df22
commit dd1dcfc7b0

View File

@@ -260,15 +260,13 @@ const ApplicationExecutionModal = ({ application, propertyDetails, onClose, onCo
<div className="mb-6"> <div className="mb-6">
<h4 className="font-medium mb-2">Application Area & GPS Track</h4> <h4 className="font-medium mb-2">Application Area & GPS Track</h4>
<div className="h-96 border rounded-lg overflow-hidden"> <div className="h-96 border rounded-lg overflow-hidden">
{propertyDetails && ( <PropertyMap
<PropertyMap property={propertyDetails}
property={propertyDetails} selectedSections={application.sections?.map(s => s.id) || []}
selectedSections={application.sections?.map(s => s.id) || []} mode="execution"
mode="execution" gpsTrack={gpsTrack}
gpsTrack={gpsTrack} currentLocation={currentLocation}
currentLocation={currentLocation} />
/>
)}
</div> </div>
</div> </div>