From 18abd6301fbb81bb4f3d7f8a777894bbd963c9da Mon Sep 17 00:00:00 2001 From: Mikkel Bonde Wiuff Date: Thu, 1 Feb 2024 20:53:02 +0100 Subject: [PATCH] docs(examples): Avoid a warning from zapier cli when using the custom-auth sample (#724) * Avoid a warning from zapier cli when using the sample --- example-apps/custom-auth/authentication.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example-apps/custom-auth/authentication.js b/example-apps/custom-auth/authentication.js index 6944af1ce..8f271680f 100644 --- a/example-apps/custom-auth/authentication.js +++ b/example-apps/custom-auth/authentication.js @@ -47,7 +47,7 @@ module.exports = { // Define any input app's auth requires here. The user will be prompted to enter // this info when they connect their account. - fields: [{ key: 'apiKey', label: 'API Key', required: true }], + fields: [{ key: 'apiKey', label: 'API Key', required: true, helpText: 'Find the API Key in your [app settings page](https://yourapp.com/settings)' }], // The test method allows Zapier to verify that the credentials a user provides // are valid. We'll execute this method whenever a user connects their account for