File tree Expand file tree Collapse file tree 5 files changed +11
-8
lines changed
nextjs/src/client-boundary
react-router/src/__tests__/__snapshots__
remix/src/__tests__/__snapshots__
tanstack-react-start/src/__tests__/__snapshots__ Expand file tree Collapse file tree 5 files changed +11
-8
lines changed 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
RedirectToTask ,
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' ;
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ exports[`root public exports > should not change unexpectedly 1`] = `
20
20
"RedirectToOrganizationProfile",
21
21
"RedirectToSignIn",
22
22
"RedirectToSignUp",
23
+ "RedirectToTask",
23
24
"RedirectToUserProfile",
24
25
"SignIn",
25
26
"SignInButton",
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ exports[`root public exports > should not change unexpectedly 1`] = `
21
21
"RedirectToOrganizationProfile",
22
22
"RedirectToSignIn",
23
23
"RedirectToSignUp",
24
+ "RedirectToTask",
24
25
"RedirectToUserProfile",
25
26
"SignIn",
26
27
"SignInButton",
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ exports[`root public exports > should not change unexpectedly 1`] = `
32
32
"RedirectToOrganizationProfile",
33
33
"RedirectToSignIn",
34
34
"RedirectToSignUp",
35
+ "RedirectToTask",
35
36
"RedirectToUserProfile",
36
37
"SignIn",
37
38
"SignInButton",
Original file line number Diff line number Diff line change 1
1
import { deprecated } from '@clerk/shared/deprecated' ;
2
2
import type {
3
- ProtectProps as _ProtectProps ,
4
3
HandleOAuthCallbackParams ,
5
4
PendingSessionOptions ,
5
+ ProtectProps as _ProtectProps ,
6
6
RedirectOptions ,
7
7
} from '@clerk/types' ;
8
8
import { defineComponent } from 'vue' ;
You can’t perform that action at this time.
0 commit comments