refactor: sort alphabetically

This commit is contained in:
WoWnik
2024-11-19 18:53:52 +03:00
parent cda66606ec
commit a83b62f62b
4 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
import Cookies from "js-cookie";
const SUPPORTED_LOCALES = ["en", "pl", "zh-Hans", "ru"] as const;
const SUPPORTED_LOCALES = ["en", "pl", "ru", "zh-Hans"] as const;
type Locale = (typeof SUPPORTED_LOCALES)[number];