diff --git a/src/commands/explore.ts b/src/commands/explore.ts index 6e401e8f3..b99e7b9ed 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,