mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-06 08:18:39 +00:00
Add organizationId to sign-in callback (#117)
This commit is contained in:
parent
012b2b1cc5
commit
84380bb436
1 changed files with 5 additions and 1 deletions
|
|
@ -43,7 +43,11 @@ export default async function Page(props: Props) {
|
|||
let editorRedirect = EXTENSION_URI_SCHEME;
|
||||
|
||||
try {
|
||||
const params = new URLSearchParams({ state, code });
|
||||
const params = new URLSearchParams({
|
||||
state,
|
||||
code,
|
||||
organizationId: orgId,
|
||||
});
|
||||
|
||||
editorRedirect = new URL(
|
||||
`/auth/clerk/callback?${params.toString()}`,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue