diff options
author | Frudrax Cheng <i@cynosura.one> | 2024-11-27 22:17:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-27 14:17:44 +0000 |
commit | 91fffd3cd28175c0bd6505786e83278052a85a93 (patch) | |
tree | 4ca2f468b65e82ab7aed5cff98a385e6c26ad683 /src/components/hooks | |
parent | b2c232e9fd8de4f0fcef1b323a9e0b0a35d6de66 (diff) | |
download | voidsky-91fffd3cd28175c0bd6505786e83278052a85a93.tar.zst |
Fix ast (#6774)
Diffstat (limited to 'src/components/hooks')
-rw-r--r-- | src/components/hooks/dates.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/hooks/dates.ts b/src/components/hooks/dates.ts index 78991bbd3..ac50769f9 100644 --- a/src/components/hooks/dates.ts +++ b/src/components/hooks/dates.ts @@ -10,7 +10,6 @@ import React from 'react' import {formatDistance, Locale} from 'date-fns' import { - ast, ca, de, enGB, @@ -45,7 +44,7 @@ import {useLanguagePrefs} from '#/state/preferences' */ const locales: Record<AppLanguage, Locale | undefined> = { en: undefined, - ast, + ast: undefined, an: undefined, ca, de, |