From 8d7189d959bc78d0f50ac43876aee928bf464129 Mon Sep 17 00:00:00 2001 From: "sentry[bot]" <39604003+sentry[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 22:44:05 +0000 Subject: [PATCH] fix(explore): Correctly parse variadic field and environment flags --- src/commands/explore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/explore.ts b/src/commands/explore.ts index 6e401e8f32..b99e7b9ed3 100644 --- a/src/commands/explore.ts +++ b/src/commands/explore.ts @@ -632,7 +632,7 @@ export const exploreCommand = buildListCommand("explore", { flags: { field: { kind: "parsed", - parse: String, + parse: (v: string[]) => v, brief: 'API field or aggregate (repeatable). E.g., title, "count()", "p50(transaction.duration)"', variadic: true, @@ -671,7 +671,7 @@ export const exploreCommand = buildListCommand("explore", { }, environment: { kind: "parsed", - parse: String, + parse: (v: string[]) => v, brief: "Replay environment filter for --dataset replays (repeatable, comma-separated)", variadic: true,