summaryrefslogtreecommitdiffhomepage
path: root/packages/console/app/src/context
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-10-04 21:33:39 -0400
committerDax Raad <[email protected]>2025-10-04 21:33:47 -0400
commit5f7ae6477bca82eb0d53f325fe01dc25f50d85c2 (patch)
treed69392511a90135df642a071bf06da81a9525a9a /packages/console/app/src/context
parentf41a54b4b01897533e28c86ed31ec3c136269969 (diff)
downloadopencode-5f7ae6477bca82eb0d53f325fe01dc25f50d85c2.tar.gz
opencode-5f7ae6477bca82eb0d53f325fe01dc25f50d85c2.zip
sync
Diffstat (limited to 'packages/console/app/src/context')
-rw-r--r--packages/console/app/src/context/auth.ts6
-rw-r--r--packages/console/app/src/context/auth.withActor.ts2
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/console/app/src/context/auth.ts b/packages/console/app/src/context/auth.ts
index eff005c53..14a876fda 100644
--- a/packages/console/app/src/context/auth.ts
+++ b/packages/console/app/src/context/auth.ts
@@ -1,8 +1,8 @@
import { getRequestEvent } from "solid-js/web"
-import { and, Database, eq, inArray, sql } from "@opencode/console-core/drizzle/index.js"
-import { UserTable } from "@opencode/console-core/schema/user.sql.js"
+import { and, Database, eq, inArray, sql } from "@opencode-ai/console-core/drizzle/index.js"
+import { UserTable } from "@opencode-ai/console-core/schema/user.sql.js"
import { redirect } from "@solidjs/router"
-import { Actor } from "@opencode/console-core/actor.js"
+import { Actor } from "@opencode-ai/console-core/actor.js"
import { createClient } from "@openauthjs/openauth/client"
import { useAuthSession } from "./auth.session"
diff --git a/packages/console/app/src/context/auth.withActor.ts b/packages/console/app/src/context/auth.withActor.ts
index 2cb970269..ff377cda4 100644
--- a/packages/console/app/src/context/auth.withActor.ts
+++ b/packages/console/app/src/context/auth.withActor.ts
@@ -1,4 +1,4 @@
-import { Actor } from "@opencode/console-core/actor.js"
+import { Actor } from "@opencode-ai/console-core/actor.js"
import { getActor } from "./auth"
export async function withActor<T>(fn: () => T, workspace?: string) {