From 6f28f8a801813a405e5a582ac53331d770a6626d Mon Sep 17 00:00:00 2001 From: Yevhen Odynets Date: Wed, 5 Feb 2025 09:07:01 +0200 Subject: [PATCH] add ts-ignore --- auth.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/auth.ts b/auth.ts index 0fe3b95..94ee955 100644 --- a/auth.ts +++ b/auth.ts @@ -72,7 +72,8 @@ export const { if (!exisingUser) return token - token.isOauth = Boolean(exisingUser?.isOauth || false) + // ts-ignore + token.isOauth = Boolean(exisingUser?.isOauth) token.provider = exisingUser.provider token.role = exisingUser.role token.profileId = exisingUser.profileId