Skip to content

Commit fc59953

Browse files
committed
remove useless instruction
1 parent 7f8d682 commit fc59953

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

apps/sim/triggers/grain/utils.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ export function grainSetupInstructions(eventType: string): string {
1919
const instructions = [
2020
'Enter your Grain API Key (Personal Access Token) above.',
2121
'You can find or create your API key in Grain at <strong>Settings > Integrations > API</strong>.',
22-
`Click <strong>"Deploy"</strong> to automatically create the webhook in Grain for <strong>${eventType}</strong> events.`,
2322
'The webhook will be automatically deleted when you remove this trigger.',
2423
]
2524

apps/sim/triggers/hubspot/utils.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,8 @@ export function hubspotSetupInstructions(eventType: string, additionalNotes?: st
8282
'<strong>Step 3: Configure OAuth Settings</strong><br/>After creating your app via CLI, configure it to add the OAuth Redirect URL: <code>https://www.sim.ai/api/auth/oauth2/callback/hubspot</code>. Then retrieve your <strong>Client ID</strong> and <strong>Client Secret</strong> from your app configuration and enter them in the fields above.',
8383
"<strong>Step 4: Get App ID and Developer API Key</strong><br/>In your HubSpot developer account, find your <strong>App ID</strong> (shown below your app name) and your <strong>Developer API Key</strong> (in app settings). You'll need both for the next steps.",
8484
'<strong>Step 5: Set Required Scopes</strong><br/>Configure your app to include the required OAuth scope: <code>crm.objects.contacts.read</code>',
85-
'<strong>Step 6: Deploy in Sim</strong><br/>Click <strong>"Deploy"</strong> above. This will generate your unique webhook URL.',
86-
'<strong>Step 7: Configure Webhook in HubSpot via API</strong><br/>After saving above, copy the <strong>Webhook URL</strong> and run the two curl commands below (replace <code>{YOUR_APP_ID}</code>, <code>{YOUR_DEVELOPER_API_KEY}</code>, and <code>{YOUR_WEBHOOK_URL_FROM_ABOVE}</code> with your actual values).',
87-
"<strong>Step 8: Test Your Webhook</strong><br/>Create or modify a contact in HubSpot to trigger the webhook. Check your workflow execution logs in Sim to verify it's working.",
85+
'<strong>Step 6: Configure Webhook in HubSpot via API</strong><br/>After saving above, copy the <strong>Webhook URL</strong> and run the two curl commands below (replace <code>{YOUR_APP_ID}</code>, <code>{YOUR_DEVELOPER_API_KEY}</code>, and <code>{YOUR_WEBHOOK_URL_FROM_ABOVE}</code> with your actual values).',
86+
"<strong>Step 7: Test Your Webhook</strong><br/>Create or modify a contact in HubSpot to trigger the webhook. Check your workflow execution logs in Sim to verify it's working.",
8887
]
8988

9089
if (additionalNotes) {

apps/sim/triggers/lemlist/utils.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ export function lemlistSetupInstructions(eventType: string): string {
2323
const instructions = [
2424
'Enter your Lemlist API Key above.',
2525
'You can find your API key in Lemlist at <strong>Settings > Integrations > API</strong>.',
26-
`Click <strong>"Deploy"</strong> to automatically create the webhook in Lemlist for <strong>${eventType}</strong> events.`,
2726
'The webhook will be automatically deleted when you remove this trigger.',
2827
]
2928

apps/sim/triggers/twilio_voice/webhook.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ Return ONLY the TwiML with square brackets - no explanations, no markdown, no ex
129129
'Scroll down to the "Voice Configuration" section.',
130130
'In the "A CALL COMES IN" field, select "Webhook" and paste the Webhook URL (from above).',
131131
'Ensure the HTTP method is set to POST.',
132-
'Click "Deploy".',
133132
'How it works: When a call comes in, Twilio receives your TwiML response immediately and executes those instructions. Your workflow runs in the background with access to caller information, call status, and any recorded/transcribed data.',
134133
]
135134
.map((instruction, index) => `${index + 1}. ${instruction}`)

0 commit comments

Comments
 (0)