fix: resolve copilot suggestions

This commit is contained in:
divocat
2025-10-07 17:23:26 +03:00
parent ddad137fc1
commit 5d0f8ce5bf
3 changed files with 4 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ export function validatePath(value: string): ValidationResult {
if (pathRegex.test(value)) {
return {
valid: true,
message: 'Valid',
message: _('Valid'),
};
}