Skip to content

Commit

Permalink
Flip lng, lat in player to lat, lng
Browse files Browse the repository at this point in the history
  • Loading branch information
skanderm committed Aug 22, 2023
1 parent 15085ca commit 8eae25f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/Player/Player.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export default function Player({
: "Select a location to start listening live"}
</Box>
<Box sx={{ mx: 4, flexGrow: 1, textAlign: "end" }}>
{currentFeed && `${currentFeed.latLng.lng}, ${currentFeed.latLng.lat}`}
{currentFeed && `${currentFeed.latLng.lat}, ${currentFeed.latLng.lng}`}
</Box>
</Box>
);
Expand Down

0 comments on commit 8eae25f

Please sign in to comment.