d9494a5
1
2
3
4
5
6
7
8
import { APP_LOCALES, type AppLocale, } from '@/translations/constants/AppLocales'; export const isValidLocale = (value: string | null): value is AppLocale => value !== null && value in APP_LOCALES;