From 44f815db0289765b074888028946689724a13d90 Mon Sep 17 00:00:00 2001 From: Faruk AYDIN Date: Thu, 21 Sep 2023 13:50:05 +0200 Subject: [PATCH] fix(positionstack): Longitude and latitude values --- .../apps/positionstack/actions/reverse-geocoding/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/backend/src/apps/positionstack/actions/reverse-geocoding/index.ts b/packages/backend/src/apps/positionstack/actions/reverse-geocoding/index.ts index 73fb9193..c767cbd7 100644 --- a/packages/backend/src/apps/positionstack/actions/reverse-geocoding/index.ts +++ b/packages/backend/src/apps/positionstack/actions/reverse-geocoding/index.ts @@ -6,16 +6,16 @@ export default defineAction({ description: 'Get the address of a location from its longitude and latitude.', arguments: [ { - label: 'Longitude', - key: 'longitude', + label: 'Latitude', + key: 'latitude', type: 'string' as const, required: true, description: 'Longitude of the location.', variables: true, }, { - label: 'Latitude', - key: 'latitude', + label: 'Longitude', + key: 'longitude', type: 'string' as const, required: true, description: 'Latitude of the location.',