Skip to content

Commit

Permalink
fix(api): fix error with lng
Browse files Browse the repository at this point in the history
  • Loading branch information
nicobytes committed Sep 10, 2024
1 parent 09bf019 commit fb33e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/api/src/dtos/location.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const QueryParamsSchema = z.object({
.transform((v) => {
return {
latitude: Number.parseFloat(v.latitude),
longitude: Number.parseFloat(v.latitude),
longitude: Number.parseFloat(v.longitude),
};
}),
});
Expand Down

0 comments on commit fb33e1c

Please sign in to comment.