diff options
| author | Frank <[email protected]> | 2025-09-03 06:12:17 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-09-03 06:12:17 -0400 |
| commit | 4d2cc9d85840632a9ab81dabff9a1b6d86683b2e (patch) | |
| tree | 57edac0e8c39c56da89d279b4b29cc796d917232 /cloud | |
| parent | 610ffbdd618f91021b358e0ffacb04b694079256 (diff) | |
| download | opencode-4d2cc9d85840632a9ab81dabff9a1b6d86683b2e.tar.gz opencode-4d2cc9d85840632a9ab81dabff9a1b6d86683b2e.zip | |
wip: console
Diffstat (limited to 'cloud')
| -rw-r--r-- | cloud/app/src/routes/index.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloud/app/src/routes/index.tsx b/cloud/app/src/routes/index.tsx index c1124dd75..da466e022 100644 --- a/cloud/app/src/routes/index.tsx +++ b/cloud/app/src/routes/index.tsx @@ -32,7 +32,7 @@ const isLoggedIn = query(async () => { }, "isLoggedIn") export default function Home() { - const auth = createAsync(() => isLoggedIn(), { + const workspaceId = createAsync(() => isLoggedIn(), { deferStream: true, }) onMount(() => { @@ -92,7 +92,7 @@ export default function Home() { href="/auth" target="_self" > - {auth() ? "Dashboard" : "Sign in"} + Sign in </a> </section> |
