fix locale: change locale filepath due to antd5 #1146

This commit is contained in:
superlbr
2023-01-22 20:44:28 +08:00
parent 3b0bae9c70
commit b7e18a1214
+3 -3
View File
@@ -5,9 +5,9 @@ import { i18n } from "@lingui/core"
import { I18nProvider } from '@lingui/react'
import { getLocale } from 'utils'
import { zh, en, pt } from 'make-plural/plurals'
import zhCN from 'antd/lib/locale-provider/zh_CN'
import enUS from 'antd/lib/locale-provider/en_US'
import ptBR from 'antd/lib/locale-provider/pt_BR'
import zhCN from 'antd/lib/locale/zh_CN'
import enUS from 'antd/lib/locale/en_US'
import ptBR from 'antd/lib/locale/pt_BR'
import BaseLayout from './BaseLayout'