refactor(auth): remove apple login status

This commit is contained in:
2026-07-09 17:25:16 +08:00
parent 6bc14ab799
commit c594e55fd3
5 changed files with 4 additions and 7 deletions
-2
View File
@@ -12,8 +12,6 @@ export const LoginStatus = {
Google: "google",
/** 邮箱 + 密码登录 */
Email: "email",
/** Apple ID 登录 */
Apple: "apple",
} as const;
export type LoginStatus = (typeof LoginStatus)[keyof typeof LoginStatus];