From c9155c117a0fe821f7a7b6cacb2713b3930211c7 Mon Sep 17 00:00:00 2001 From: Frank Date: Fri, 10 Oct 2025 09:03:49 -0400 Subject: [PATCH] wip: zen --- .../console/app/src/routes/workspace/[id]/index.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/packages/console/app/src/routes/workspace/[id]/index.tsx b/packages/console/app/src/routes/workspace/[id]/index.tsx index a5a8bb46..3716674a 100644 --- a/packages/console/app/src/routes/workspace/[id]/index.tsx +++ b/packages/console/app/src/routes/workspace/[id]/index.tsx @@ -4,8 +4,14 @@ import { UsageSection } from "./usage-section" import { ModelSection } from "./model-section" import { ProviderSection } from "./provider-section" import { IconLogo } from "~/component/icon" +import { createAsync, useParams } from "@solidjs/router" +import { querySessionInfo } from "../common" +import { Show } from "solid-js" export default function () { + const params = useParams() + const userInfo = createAsync(() => querySessionInfo(params.id)) + return (
@@ -22,7 +28,9 @@ export default function () {
- + + +