Update settings system.
Some checks failed
Build and Push Beta Image / build-and-push (push) Has been cancelled

This commit is contained in:
yuanhau 2025-06-26 20:43:09 +08:00
parent 200e89f066
commit 6fcf93ab5e

View file

@ -56,6 +56,7 @@ const logoutAction = async () => {
const req = await fetch("/api/user/logout"); const req = await fetch("/api/user/logout");
const res = await req.json(); const res = await req.json();
console.log(res); console.log(res);
await validateUserInfo();
showLogoutDialog.value = false; showLogoutDialog.value = false;
}; };