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 {
2677
2677
this . #emit( ) ;
2678
2678
} ;
2679
2679
2680
- get __internal_hasAfterAuthFlows ( ) {
2681
- return ! ! this . environment ?. organizationSettings ?. forceOrganizationSelection ;
2682
- }
2683
-
2684
2680
#defaultSession = ( client : ClientResource ) : SignedInSessionResource | null => {
2685
2681
if ( client . lastActiveSessionId ) {
2686
2682
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<
106
106
| 'billing'
107
107
| 'apiKeys'
108
108
| '__internal_setActiveInProgress'
109
- | '__internal_hasAfterAuthFlows'
110
109
> & {
111
110
client : ClientResource | undefined ;
112
111
billing : CommerceBillingNamespace | undefined ;
Original file line number Diff line number Diff line change @@ -866,12 +866,6 @@ export interface Clerk {
866
866
*/
867
867
__internal_setActiveInProgress : boolean ;
868
868
869
- /**
870
- * Internal flag indicating whether after-auth flows are enabled based on instance settings.
871
- * @internal
872
- */
873
- __internal_hasAfterAuthFlows : boolean ;
874
-
875
869
/**
876
870
* API Keys Object
877
871
* @experimental
You can’t perform that action at this time.
0 commit comments