Skip to content

Commit adaaf17

Browse files
betegonclaude
andcommitted
fix(init): add spinner message for detect-sentry operation
Without this, describeLocalOp falls through to the default branch and shows the raw operation name "detect-sentry..." to the user. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8752f90 commit adaaf17

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/lib/init/wizard-runner.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ export function describeLocalOp(payload: LocalOpPayload): string {
129129
return "Listing directory...";
130130
case "create-sentry-project":
131131
return `Creating project "${payload.params.name}" (${payload.params.platform})...`;
132+
case "detect-sentry":
133+
return "Checking for existing Sentry setup...";
132134
default:
133135
return `${(payload as { operation: string }).operation}...`;
134136
}

0 commit comments

Comments
 (0)