Skip to content

Commit

Permalink
Fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
giorgio-tran committed Nov 11, 2023
1 parent 6b279f8 commit 5837e00
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions my-app/src/pages/report/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -497,25 +497,25 @@ const ReportForm = () => {
</div>
{debrisRelativeLocation.includes("sea") ||
debrisRelativeLocation.includes("None") ? (
<span>
<p className="text-gray-600 mt-4 mb-4 max-w-2xl">
<b>
<span>
<p className="text-gray-600 mt-4 mb-4 max-w-2xl">
<b>
Please provide a position description and any information on
currents and winds that could help in relocating the debris.
</b>
</p>
<input
type="text"
className="input input-bordered bg-white text-gray-600 mb-2 w-full"
onChange={(event) =>
setDebrisLocationDetails(event.target.value)
}
value={debrisLocationDetails}
/>
</span>
) : (
""
)}
</b>
</p>
<input
type="text"
className="input input-bordered bg-white text-gray-600 mb-2 w-full"
onChange={(event) =>
setDebrisLocationDetails(event.target.value)
}
value={debrisLocationDetails}
/>
</span>
) : (
""
)}
<div className="grid flex-grow card rounded-box">
<div className="mt-4">
<ClickableMap setCoordinates={setCoordinates} />
Expand Down

0 comments on commit 5837e00

Please sign in to comment.