diff --git a/src/integrations/claude-code/run.ts b/src/integrations/claude-code/run.ts index 3f438df0fc2..ac2e856f7a9 100644 --- a/src/integrations/claude-code/run.ts +++ b/src/integrations/claude-code/run.ts @@ -260,7 +260,7 @@ function attemptParseChunk(data: string): ClaudeCodeMessage | null { * Creates a user-friendly error message for Claude Code ENOENT errors */ function createClaudeCodeNotFoundError(claudePath: string, originalError: Error): Error { - const errorMessage = t("errors.claudeCode.notFound", { + const errorMessage = t("common:errors.claudeCode.notFound", { claudePath, installationUrl: CLAUDE_CODE_INSTALLATION_URL, originalError: originalError.message,