[feat] fps test results gathering

This commit is contained in:
2025-11-05 13:20:50 +08:00
parent c19adcc3f8
commit ce410f7a26
17 changed files with 363 additions and 116 deletions

View File

@@ -36,7 +36,8 @@ export function AuthProvider({ children }: { children: React.ReactNode }) {
addToast({
title: "登录失败",
description: "无法验证登录信息,请重试",
variant: "danger",
severity: "danger",
})
}
} catch (error) {
@@ -44,7 +45,7 @@ export function AuthProvider({ children }: { children: React.ReactNode }) {
addToast({
title: "登录失败",
description: error instanceof Error ? error.message : "未知错误",
variant: "danger",
severity: "danger",
})
} finally {
setLoading(false)