From bb2843fdc05ce628efbf3158cd69fff435ace2bb Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Tue, 24 Mar 2026 06:47:17 -0700 Subject: [PATCH] fix(integrations): remove outdated trigger mode text from FAQ --- apps/sim/app/(landing)/integrations/[slug]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/sim/app/(landing)/integrations/[slug]/page.tsx b/apps/sim/app/(landing)/integrations/[slug]/page.tsx index 743fc2f006b..4229fc2ec5d 100644 --- a/apps/sim/app/(landing)/integrations/[slug]/page.tsx +++ b/apps/sim/app/(landing)/integrations/[slug]/page.tsx @@ -111,7 +111,7 @@ function buildFAQs(integration: Integration): FAQItem[] { ? [ { question: `How do I trigger a Sim workflow from ${name} automatically?`, - answer: `In your Sim workflow, switch the ${name} block to Trigger mode and copy the generated webhook URL. Paste that URL into ${name}'s webhook settings and select the events you want to listen for (${triggers.map((t) => t.name).join(', ')}). From that point on, every matching event in ${name} instantly fires your workflow — no polling, no delay.`, + answer: `Add a ${name} trigger block to your workflow and copy the generated webhook URL. Paste that URL into ${name}'s webhook settings and select the events you want to listen for (${triggers.map((t) => t.name).join(', ')}). From that point on, every matching event in ${name} instantly fires your workflow — no polling, no delay.`, }, { question: `What data does Sim receive when a ${name} event triggers a workflow?`,