File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed
nextjs/src/client-boundary Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"files" : [
3
- { "path" : " ./dist/clerk.js" , "maxSize" : " 622.25KB " },
4
- { "path" : " ./dist/clerk.browser.js" , "maxSize" : " 76KB " },
3
+ { "path" : " ./dist/clerk.js" , "maxSize" : " 625KB " },
4
+ { "path" : " ./dist/clerk.browser.js" , "maxSize" : " 78KB " },
5
5
{ "path" : " ./dist/clerk.legacy.browser.js" , "maxSize" : " 117KB" },
6
6
{ "path" : " ./dist/clerk.headless*.js" , "maxSize" : " 61KB" },
7
7
{ "path" : " ./dist/ui-common*.js" , "maxSize" : " 113KB" },
Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ import type {
28
28
AuthenticateWithGoogleOneTapParams ,
29
29
AuthenticateWithMetamaskParams ,
30
30
AuthenticateWithOKXWalletParams ,
31
+ Clerk as ClerkInterface ,
31
32
ClerkAPIError ,
32
33
ClerkAuthenticateWithWeb3Params ,
33
- Clerk as ClerkInterface ,
34
34
ClerkOptions ,
35
35
ClientJSONSnapshot ,
36
36
ClientResource ,
@@ -1267,7 +1267,7 @@ export class Clerk implements ClerkInterface {
1267
1267
}
1268
1268
1269
1269
// Do not revalidate server cache for pending sessions to avoid unmount of `SignIn/SignUp` AIOs when navigating to task
1270
- if ( ! sessionIsPending ) {
1270
+ if ( newSession ?. status !== 'pending' ) {
1271
1271
/**
1272
1272
* Hint to each framework, that the user will be signed out when `{session: null}` is provided.
1273
1273
*/
Original file line number Diff line number Diff line change 1
1
'use client' ;
2
2
3
3
export {
4
- AuthenticateWithRedirectCallback ,
5
- ClerkDegraded ,
6
- ClerkFailed ,
7
4
ClerkLoaded ,
8
5
ClerkLoading ,
6
+ ClerkDegraded ,
7
+ ClerkFailed ,
8
+ SignedOut ,
9
+ SignedIn ,
9
10
Protect ,
10
- RedirectToCreateOrganization ,
11
- RedirectToOrganizationProfile ,
12
11
RedirectToSignIn ,
13
12
RedirectToSignUp ,
14
13
RedirectToTasks ,
15
14
RedirectToUserProfile ,
16
- SignedIn ,
17
- SignedOut ,
15
+ AuthenticateWithRedirectCallback ,
16
+ RedirectToCreateOrganization ,
17
+ RedirectToOrganizationProfile ,
18
18
} from '@clerk/clerk-react' ;
19
19
20
20
export { MultisessionAppSupport } from '@clerk/clerk-react/internal' ;
You can’t perform that action at this time.
0 commit comments