From 2644f039fc6d266da8c1b7621c8bc69078f56a22 Mon Sep 17 00:00:00 2001 From: mathuraditya724 Date: Mon, 6 Apr 2026 16:53:28 +0530 Subject: [PATCH] fix(init): rename 'Custom Metrics' feature label to 'Metrics' The metrics feature was labeled 'Custom Metrics' in the feature selection prompt, which doesn't match Sentry's standard terminology. Rename to 'Metrics' for consistency. Closes getsentry/cli-init-api#59 --- src/lib/init/clack-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/init/clack-utils.ts b/src/lib/init/clack-utils.ts index a50fe2877..d796fd003 100644 --- a/src/lib/init/clack-utils.ts +++ b/src/lib/init/clack-utils.ts @@ -43,7 +43,7 @@ const FEATURE_INFO: Record = { hint: "Code-level performance insights", }, logs: { label: "Logging", hint: "Structured log ingestion" }, - metrics: { label: "Custom Metrics", hint: "Track custom business metrics" }, + metrics: { label: "Metrics", hint: "Track business metrics" }, sourceMaps: { label: "Source Maps", hint: "See original source code in production errors",