Skip to content

Commit 504dc93

Browse files
committed
Add changeset
1 parent 6254f92 commit 504dc93

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.changeset/bright-cats-lay.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
'@clerk/clerk-js': patch
3+
'@clerk/types': patch
4+
---
5+
6+
Export `<TaskSelectOrganization />` component.
7+
8+
It allows you to eject the organization selection task flow from the default `SignIn` and `SignUp` components and render it on custom URL paths using `taskUrls`.
9+
10+
Usage example:
11+
```tsx
12+
<ClerkProvider taskUrls={{ 'select-organization': '/choose-organization' }}>
13+
<App />
14+
</ClerkProvider>
15+
```
16+
17+
```tsx
18+
function ChooseOrganizationPage() {
19+
return <TaskSelectOrganization redirectUrlComplete="/dashboard" />
20+
}
21+
```

0 commit comments

Comments
 (0)