fix(positionstack): Longitude and latitude values

This commit is contained in:
Faruk AYDIN
2023-09-21 13:50:05 +02:00
parent 5224749725
commit 44f815db02

View File

@@ -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.',