Changed fetch response.

This commit is contained in:
Mike Cao 2025-02-08 23:38:21 -08:00
parent 7a0575e33a
commit 26463973cb
8 changed files with 36 additions and 13 deletions

View file

@ -20,7 +20,9 @@ export function useLocale() {
const dateLocale = getDateLocale(locale);
async function loadMessages(locale: string) {
messages[locale] = await httpGet(`${process.env.basePath || ''}/intl/messages/${locale}.json`);
const { data } = await httpGet(`${process.env.basePath || ''}/intl/messages/${locale}.json`);
messages[locale] = data;
}
async function saveLocale(value: string) {