Skip to content
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.

Commit

Permalink
style: Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
oliversalzburg committed Jul 17, 2021
1 parent 58bcc67 commit 8d893a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/userscript/source/UserScript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export class UserScript {
value = i18nData[DefaultLanguage][key as keyof typeof i18nData[SupportedLanguages]];
if (!value) {
cwarn(`i18n key '${key}' not found in default language.`);
return "$" + key;
return `$${key}`;
}
cwarn(`i18n key '${key}' not found in selected language.`);
}
Expand Down

0 comments on commit 8d893a5

Please sign in to comment.