refactor: bump to 0.13.0

This commit is contained in:
Mauricio Siu
2024-11-27 23:20:32 -06:00
parent a1cf597c2b
commit 37fa139a65
7 changed files with 15 additions and 7 deletions

View File

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