/* Copyright 2026 Marimo. All rights reserved. */ import { useAtomValue } from "jotai"; import type { ReactNode } from "react"; import { I18nProvider } from "react-aria-components"; import { localeAtom } from "@/core/config/config"; interface LocaleProviderProps { children: ReactNode; } export const LocaleProvider = ({ children }: LocaleProviderProps) => { const locale = useAtomValue(localeAtom); return {children}; }; function safeLocale(locale: string | null | undefined) { if (!locale) { return navigator.language; } if (isValidLocale(locale)) { return locale; } return navigator.language; } function isValidLocale(locale: string) { try { new Intl.NumberFormat(locale); return true; } catch { return false; } }