Skip to content

Commit

Permalink
Merge pull request #886 from stadtnavi/fix/origin-destination-error
Browse files Browse the repository at this point in the history
fix(bike-park-content): error on selecting coordinates
  • Loading branch information
andreashelms authored Jan 21, 2025
2 parents d7f594c + bcaac52 commit e50b320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/component/map/sidebar/BikeParkContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const BikeParkContent = ({ match }, { intl }) => {
location={{
address: getName(props),
lat: Number(props?.vehicleParking?.lat),
lon: Number(props?.vehicleParking?.lng),
lon: Number(props?.vehicleParking?.lon),
}}
photoUrl={props?.vehicleParking?.imageUrl}
>
Expand Down

0 comments on commit e50b320

Please sign in to comment.