diff options
| author | Dax Raad <[email protected]> | 2025-08-29 11:58:17 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-08-29 11:58:17 -0400 |
| commit | 4496cd4b64e51805b790728e67a018791e731cd6 (patch) | |
| tree | e85cedfa322bd98e1f1443a725cb0dcd820891ac /cloud/app/src/routes | |
| parent | 7f5e5fccc8d9248871d59e5adbfe52a7d307d09a (diff) | |
| download | opencode-4496cd4b64e51805b790728e67a018791e731cd6.tar.gz opencode-4496cd4b64e51805b790728e67a018791e731cd6.zip | |
ignore: cloud solid fixes
Diffstat (limited to 'cloud/app/src/routes')
| -rw-r--r-- | cloud/app/src/routes/workspace/[workspaceID].tsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cloud/app/src/routes/workspace/[workspaceID].tsx b/cloud/app/src/routes/workspace/[workspaceID].tsx index 00e61a0c7..f507b5152 100644 --- a/cloud/app/src/routes/workspace/[workspaceID].tsx +++ b/cloud/app/src/routes/workspace/[workspaceID].tsx @@ -2,7 +2,8 @@ import { Billing } from "@opencode/cloud-core/billing.js" import { Key } from "@opencode/cloud-core/key.js" import { action, createAsync, revalidate, query, useAction, useSubmission } from "@solidjs/router" import { createEffect, createSignal, For, onMount, Show } from "solid-js" -import { getActor, withActor } from "~/context/auth" +import { getActor } from "~/context/auth" +import { withActor } from "~/context/auth.withActor" ///////////////////////////////////// // Keys related queries and actions @@ -47,8 +48,11 @@ const createPortalUrl = action(async (returnUrl: string) => { return withActor(() => Billing.generatePortalUrl({ returnUrl })) }, "portalUrl") -export default function() { +export default function () { const actor = createAsync(() => getActor()) + onMount(() => { + console.log("MOUNTED", actor()) + }) ///////////////// // Keys section |
