Skip to content

Commit

Permalink
Fix x and y cords for map marker. (#2334)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaddox5 authored Dec 5, 2024
1 parent 69f0bb7 commit 5e76028
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type Coordinates = {

const PulsatingDot = ({ x, y }: Coordinates) => {
return (
<div className="marker-container" style={{ top: x, left: y }}>
<div className="marker-container" style={{ left: x, top: y }}>
<CurrentLocationBackground className="marker-background" />
<CurrentLocationMarker className="marker" />
</div>
Expand Down

0 comments on commit 5e76028

Please sign in to comment.