Skip to content

Commit b917347

Browse files
[autofix.ci] apply automated fixes
1 parent 63b0b02 commit b917347

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/frontend/src/i18n.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ const SUPPORTED_LANGUAGES = [
1616
const normalizeLanguage = (lang?: string | null): string => {
1717
if (!lang) return "en";
1818

19-
if (SUPPORTED_LANGUAGES.includes(lang as (typeof SUPPORTED_LANGUAGES)[number])) {
19+
if (
20+
SUPPORTED_LANGUAGES.includes(lang as (typeof SUPPORTED_LANGUAGES)[number])
21+
) {
2022
return lang;
2123
}
2224

0 commit comments

Comments
 (0)