Skip to content

Commit b95d3a3

Browse files
micahfleeredshiftzero
authored andcommitted
Fix linting issue
1 parent 7071983 commit b95d3a3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/renderer/src/i18n/translator.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ describe("translator", () => {
3232
const key = "viewModels.x.wizard.login.action";
3333
const englishValue = translate(key);
3434

35-
i18n.global.locale.value = "fr";
35+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
36+
i18n.global.locale.value = "fr" as any;
3637

3738
expect(translate(key)).toBe(englishValue);
3839
});

0 commit comments

Comments
 (0)