-
Notifications
You must be signed in to change notification settings - Fork 19.8k
Closed
Labels
Description
What problem does this feature solve?
Update src/core/locale.ts:
const langStr = (
/* eslint-disable-next-line */
document.documentElement.lang || navigator.language || (navigator as any).browserLanguage
).toUpperCase();const langStr = (
/* eslint-disable-next-line */
document.documentElement.lang || navigator.language || (navigator as any).browserLanguage || DEFAULT_LOCALE
).toUpperCase();What does the proposed API look like?
Nothing.
Reactions are currently unavailable