diff options
| author | Dax Raad <[email protected]> | 2025-08-30 01:06:48 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-08-30 01:06:48 -0400 |
| commit | 52b3eddeee0091d72f24b17b9ae61796f54afbe5 (patch) | |
| tree | 7548a824e4ce725de82ceba3ecc1760b86255700 /cloud/app/src/context | |
| parent | f821b555140cc41f68c7c034bb82ae0cb07d7321 (diff) | |
| download | opencode-52b3eddeee0091d72f24b17b9ae61796f54afbe5.tar.gz opencode-52b3eddeee0091d72f24b17b9ae61796f54afbe5.zip | |
ignore: fix dev remote
Diffstat (limited to 'cloud/app/src/context')
| -rw-r--r-- | cloud/app/src/context/auth.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cloud/app/src/context/auth.ts b/cloud/app/src/context/auth.ts index 9a5606a44..5b7d3f54b 100644 --- a/cloud/app/src/context/auth.ts +++ b/cloud/app/src/context/auth.ts @@ -17,6 +17,7 @@ export const AuthClient = createClient({ export const getActor = query(async (): Promise<Actor.Info> => { "use server" const evt = getRequestEvent() + console.log(evt?.request.url) const url = new URL(evt!.request.headers.get("referer") ?? evt!.request.url) const auth = await useAuthSession() const splits = url.pathname.split("/").filter(Boolean) |
