File tree Expand file tree Collapse file tree 4 files changed +7
-11
lines changed
Expand file tree Collapse file tree 4 files changed +7
-11
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @clerk/clerk-js ' : patch
3+ ' @clerk/clerk-react ' : patch
4+ ' @clerk/types ' : patch
5+ ---
6+
7+ Remove unused ` __internal_hasAfterAuthFlows ` property
Original file line number Diff line number Diff line change @@ -2677,10 +2677,6 @@ export class Clerk implements ClerkInterface {
26772677 this . #emit( ) ;
26782678 } ;
26792679
2680- get __internal_hasAfterAuthFlows ( ) {
2681- return ! ! this . environment ?. organizationSettings ?. forceOrganizationSelection ;
2682- }
2683-
26842680 #defaultSession = ( client : ClientResource ) : SignedInSessionResource | null => {
26852681 if ( client . lastActiveSessionId ) {
26862682 const currentSession = client . signedInSessions . find ( s => s . id === client . lastActiveSessionId ) ;
Original file line number Diff line number Diff line change @@ -106,7 +106,6 @@ type IsomorphicLoadedClerk = Without<
106106 | 'billing'
107107 | 'apiKeys'
108108 | '__internal_setActiveInProgress'
109- | '__internal_hasAfterAuthFlows'
110109> & {
111110 client : ClientResource | undefined ;
112111 billing : CommerceBillingNamespace | undefined ;
Original file line number Diff line number Diff line change @@ -866,12 +866,6 @@ export interface Clerk {
866866 */
867867 __internal_setActiveInProgress : boolean ;
868868
869- /**
870- * Internal flag indicating whether after-auth flows are enabled based on instance settings.
871- * @internal
872- */
873- __internal_hasAfterAuthFlows : boolean ;
874-
875869 /**
876870 * API Keys Object
877871 * @experimental
You can’t perform that action at this time.
0 commit comments