From 8a645d2db5c6179468779d01eaa9473ced2fb321 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Fri, 17 Apr 2026 00:13:09 +0200 Subject: [PATCH] core-components: remove unused onSignInFailure and onSignInStarted type aliases Signed-off-by: Patrik Oldsberg Made-with: Cursor --- packages/core-components/src/layout/SignInPage/types.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/packages/core-components/src/layout/SignInPage/types.ts b/packages/core-components/src/layout/SignInPage/types.ts index a7e1ca62c2..d56a0c54da 100644 --- a/packages/core-components/src/layout/SignInPage/types.ts +++ b/packages/core-components/src/layout/SignInPage/types.ts @@ -35,15 +35,6 @@ export type SignInProviderConfig = { /** @public */ export type IdentityProviders = ('guest' | 'custom' | SignInProviderConfig)[]; -/** - * Invoked when the sign-in process has failed. - */ -export type onSignInFailure = () => void; -/** - * Invoked when the sign-in process has started. - */ -export type onSignInStarted = () => void; - export type ProviderComponent = ComponentType< SignInPageProps & { config: SignInProviderConfig;