From 7d611d3ddf48f0d11739efb063eefce4bff92cc2 Mon Sep 17 00:00:00 2001 From: Olasunkanmi Balogun Date: Wed, 11 Oct 2023 07:21:49 +0100 Subject: [PATCH] fix: statusText mismatch in webhook integrations (#1068) Co-authored-by: Shubham Palriwala --- .../(app)/environments/[environmentId]/integrations/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/app/(app)/environments/[environmentId]/integrations/page.tsx b/apps/web/app/(app)/environments/[environmentId]/integrations/page.tsx index d0f47dc020..ff1e7232c8 100644 --- a/apps/web/app/(app)/environments/[environmentId]/integrations/page.tsx +++ b/apps/web/app/(app)/environments/[environmentId]/integrations/page.tsx @@ -61,7 +61,7 @@ export default async function IntegrationsPage({ params }) { icon: Webhook Logo, connected: userWebhooks > 0, statusText: - userWebhooks === 1 ? "1 webhook" : userWebhooks === 0 ? "Not Connected" : `${userWebhooks} zaps`, + userWebhooks === 1 ? "1 webhook" : userWebhooks === 0 ? "Not Connected" : `${userWebhooks} webhooks`, }, { connectHref: `/environments/${params.environmentId}/integrations/google-sheets`,