Skip to content

Commit 97cfb96

Browse files
authored
Fix claudeCode.notFound translation key (#7571)
I think I saw someone post a screenshot where "errors.claudeCode.notFound" was shown untranslated.
1 parent c970274 commit 97cfb96

File tree

1 file changed

+1
-1
lines changed
  • src/integrations/claude-code

1 file changed

+1
-1
lines changed

src/integrations/claude-code/run.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ function attemptParseChunk(data: string): ClaudeCodeMessage | null {
260260
* Creates a user-friendly error message for Claude Code ENOENT errors
261261
*/
262262
function createClaudeCodeNotFoundError(claudePath: string, originalError: Error): Error {
263-
const errorMessage = t("errors.claudeCode.notFound", {
263+
const errorMessage = t("common:errors.claudeCode.notFound", {
264264
claudePath,
265265
installationUrl: CLAUDE_CODE_INSTALLATION_URL,
266266
originalError: originalError.message,

0 commit comments

Comments
 (0)