Skip to content

Commit

Permalink
Merge pull request #978 from kartoza/use-local-variables-for-long-and…
Browse files Browse the repository at this point in the history
…-lat

patch: resolve syntax error
  • Loading branch information
tinashechiraya authored Apr 12, 2024
2 parents a477d8c + 4f60eed commit 8917cd7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ export default function CoordinatesInputForm(
latitude={selectedCoordinates.latitude.toFixed(6)}
longitude={selectedCoordinates.longitude.toFixed(6)}
disabled={disabled}
setLatitude={() => {setLatitude}
setLongitude={() => {setLongitude}
setLatitude={setLatitude}
setLongitude={setLongitude}
/>) :
type === 'Degree' ?
<DegreeInputs
Expand Down

0 comments on commit 8917cd7

Please sign in to comment.