import enAU from 'date-fns/locale/en-AU'; import enCA from 'date-fns/locale/en-CA'; import type { Locale } from 'date-fns'; import type { LocaleCode } from '../../locales/types'; const Locales = { 'en-AU': enAU, 'en-CA': enCA, } as const; export function getDateFnsLocale(locale: LocaleCode): Locale { const fallbackLocale = Locales['en-AU']; return Locales[locale] || fallbackLocale; }