Skip to content

Commit

Permalink
fix: sonar
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-kalachikov committed Dec 19, 2024
1 parent aca9a4b commit 2185083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/fix-missing-locales.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export async function fixLocales() {
const originLanguage = originFile.split(".")[0];
const targetLanguage = targetFile.split(".")[0];

const translatedString = await translate(originString as string, originLanguage, targetLanguage);
const translatedString = await translate(originString, originLanguage, targetLanguage);

const tableRow = `${key} (${index + 1}/${missingKeys.length})`;
console.table({
Expand Down

0 comments on commit 2185083

Please sign in to comment.