Skip to content

Commit

Permalink
fix: ファイルエラーのメッセージを少しわかりやすくする (#2336)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba authored Nov 4, 2024
1 parent a948735 commit 1d2f708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/fileHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function generateWriteErrorMessage(writeFileResult: ResultError<any>) {
}

if (code?.startsWith("ENOENT")) {
return "ファイルが見つかりません。";
return "指定されたファイルまたはフォルダが見つかりません。";
}
}

Expand Down

0 comments on commit 1d2f708

Please sign in to comment.