This commit is contained in:
Jake Kasper
2025-09-02 12:27:39 -05:00
parent cdadedec3f
commit 4d52aae85b
2 changed files with 106 additions and 14 deletions

View File

@@ -126,7 +126,7 @@ const MowingExecutionModal = ({ plan, onClose, onComplete }) => {
<div><span className="font-medium">Mower:</span> {plan.equipment_name}</div>
<div><span className="font-medium">Cut Height:</span> {plan.cut_height_inches}"</div>
</div>
<div className="h-80 border rounded mb-4">
<div className="h-80 border rounded mb-4 overflow-hidden">
<PropertyMap
property={null}
sections={sections}
@@ -136,6 +136,7 @@ const MowingExecutionModal = ({ plan, onClose, onComplete }) => {
currentLocation={currentLocation}
center={center || [39.8283, -98.5795]}
zoom={center ? 16 : 15}
direction={plan.direction}
className="h-80 w-full"
/>
</div>