From ec740c07faf82cfde14558d6dd3d04ecfc3b38dc Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Wed, 14 Aug 2024 14:13:04 +0000 Subject: [PATCH] feat(jotform/auth): show default API URL --- packages/backend/src/apps/jotform/auth/index.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/packages/backend/src/apps/jotform/auth/index.js b/packages/backend/src/apps/jotform/auth/index.js index baf817e1..9d5cf656 100644 --- a/packages/backend/src/apps/jotform/auth/index.js +++ b/packages/backend/src/apps/jotform/auth/index.js @@ -4,14 +4,13 @@ import isStillVerified from './is-still-verified.js'; export default { fields: [ { - key: 'instanceUrl', - label: 'Jotform instance URL', + key: 'apiUrl', + label: 'API URL', type: 'string', required: false, readOnly: false, - value: null, - placeholder: 'https://${subdomain}.jotform.com', - description: 'If you have an enterprise plan, you can use your api url.', + value: 'https://api.jotform.com', + placeholder: 'https://${subdomain}.jotform.com/api', clickToCopy: true, }, { @@ -22,7 +21,6 @@ export default { readOnly: false, value: null, placeholder: null, - description: 'Jotform API key of your account.', clickToCopy: false, }, ],