From 14016d0fc1c75648cbeac15053b94953c2f0f0d8 Mon Sep 17 00:00:00 2001 From: Sebastian Stein Date: Tue, 19 Nov 2024 23:25:30 +0100 Subject: [PATCH] chore(core): remove redundant "email" from OAuthScope type definition (#14017) remove redundant "email" from OAuthScope type definition --- packages/core/src/singleton/Auth/types.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/core/src/singleton/Auth/types.ts b/packages/core/src/singleton/Auth/types.ts index fd7bc788472..e33eb6ab07a 100644 --- a/packages/core/src/singleton/Auth/types.ts +++ b/packages/core/src/singleton/Auth/types.ts @@ -194,7 +194,6 @@ export type OAuthScope = | 'email' | 'openid' | 'phone' - | 'email' | 'profile' | 'aws.cognito.signin.user.admin' | CustomScope;