Skip to content

Commit

Permalink
RSDK-6093 - Fix Lat,Lng order is flipped in nav service rc card (viam…
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksanford authored Jan 11, 2024
1 parent 1537491 commit 4c30680
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/blocks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@viamrobotics/prime-blocks",
"version": "0.0.24",
"version": "0.0.25",
"publishConfig": {
"access": "public"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ useMapLibreEvent('click', (event) => {
>
<small>Waypoint {index}</small>
<small class="text-subtle-2 opacity-60 group-hover:opacity-100">
({waypoint.lng.toFixed(4)}, {waypoint.lat.toFixed(4)})
({waypoint.lat.toFixed(4)}, {waypoint.lng.toFixed(4)})
</small>
<div class="flex items-center gap-1.5">
<IconButton
Expand Down

0 comments on commit 4c30680

Please sign in to comment.