@@ -86,7 +86,7 @@ import {
86
86
import { assertNoLegacyProp } from '../utils/assertNoLegacyProp' ;
87
87
import { memoizeListenerCallback } from '../utils/memoizeStateListenerCallback' ;
88
88
import { RedirectUrls } from '../utils/redirectUrls' ;
89
- import { SessionCookieService } from './auth/SessionCookieService ' ;
89
+ import { AuthCookieService } from './auth/AuthCookieService ' ;
90
90
import { CLERK_SATELLITE_URL , CLERK_SYNCED , ERROR_CODES } from './constants' ;
91
91
import {
92
92
clerkErrorInitFailed ,
@@ -159,7 +159,7 @@ export class Clerk implements ClerkInterface {
159
159
#publishableKey: string = '' ;
160
160
#domain: DomainOrProxyUrl [ 'domain' ] ;
161
161
#proxyUrl: DomainOrProxyUrl [ 'proxyUrl' ] ;
162
- #authService: SessionCookieService | null = null ;
162
+ #authService: AuthCookieService | null = null ;
163
163
#broadcastChannel: LocalStorageBroadcastChannel < ClerkCoreBroadcastChannelEvent > | null = null ;
164
164
#componentControls?: ReturnType < MountComponentRenderer > | null ;
165
165
//@ts -expect-error with being undefined even though it's not possible - related to issue with ts and error thrower
@@ -1517,7 +1517,7 @@ export class Clerk implements ClerkInterface {
1517
1517
} ;
1518
1518
1519
1519
#loadInStandardBrowser = async ( ) : Promise < boolean > => {
1520
- this . #authService = new SessionCookieService ( this , this . #fapiClient) ;
1520
+ this . #authService = new AuthCookieService ( this , this . #fapiClient) ;
1521
1521
1522
1522
/**
1523
1523
* 1. Multi-domain SSO handling
0 commit comments