From 5acc32411dc0869d22757e83c64584073c7cb74b Mon Sep 17 00:00:00 2001 From: "Timothy Z." Date: Thu, 10 Apr 2025 21:54:11 +0300 Subject: [PATCH] fix(app): apple login types --- src/types/global.d.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/types/global.d.ts b/src/types/global.d.ts index 82b4c55cf..e55146e9a 100644 --- a/src/types/global.d.ts +++ b/src/types/global.d.ts @@ -42,8 +42,11 @@ declare global { id_token: string; state?: string; }; - user: string; email?: string; + fullName?: { + firstName?: string; + lastName?: string; + }; }>; }; };