From 97e8cbb9ede886d6b8f0083080d4d232f49e3ced Mon Sep 17 00:00:00 2001 From: m1m1sha <18262227804@163.com> Date: Tue, 7 May 2024 13:43:08 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20fix:=20=E4=B8=8D=E5=8F=AF?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E9=A1=B6=E7=BA=A7=20await?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- easytier-gui/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easytier-gui/src/main.ts b/easytier-gui/src/main.ts index aea581a..04c23e2 100644 --- a/easytier-gui/src/main.ts +++ b/easytier-gui/src/main.ts @@ -36,7 +36,7 @@ const router = createRouter({ app.use(router) app.use(createPinia()) app.use(i18n, { useScope: 'global' }) -await loadLanguageAsync(localStorage.getItem('lang') || 'en') +loadLanguageAsync(localStorage.getItem('lang') || 'en') app.use(PrimeVue) app.use(ToastService)