From f83e0d7efa2c17e4c229925ca77f0578810f1a58 Mon Sep 17 00:00:00 2001 From: shaohuzhang1 <80892890+shaohuzhang1@users.noreply.github.com> Date: Tue, 16 Jul 2024 18:15:10 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=88=B7=E6=96=B0?= =?UTF-8?q?=E8=8F=9C=E5=8D=95404=20(#783)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/stores/modules/user.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/stores/modules/user.ts b/ui/src/stores/modules/user.ts index 273c1af3d..1f9bd14de 100644 --- a/ui/src/stores/modules/user.ts +++ b/ui/src/stores/modules/user.ts @@ -81,7 +81,7 @@ const useUserStore = defineStore({ async profile() { return UserApi.profile().then((ok) => { this.userInfo = ok.data - this.asyncGetProfile() + return this.asyncGetProfile() }) },