diff options
| author | Frank <[email protected]> | 2025-09-21 00:23:05 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-09-21 00:23:05 -0400 |
| commit | 869f629c1465e324fd76ef1098bf79efbbe78932 (patch) | |
| tree | 7b74a4d6e5f2fa2aebf788ff33cf0c7b56d4f31a /packages/console/app/src/routes/workspace | |
| parent | a55943e469e85965d6f8eba705b797b214659420 (diff) | |
| download | opencode-869f629c1465e324fd76ef1098bf79efbbe78932.tar.gz opencode-869f629c1465e324fd76ef1098bf79efbbe78932.zip | |
wip: zen
Diffstat (limited to 'packages/console/app/src/routes/workspace')
| -rw-r--r-- | packages/console/app/src/routes/workspace/[id].tsx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/packages/console/app/src/routes/workspace/[id].tsx b/packages/console/app/src/routes/workspace/[id].tsx index dc8e28cdb..af8a0dd63 100644 --- a/packages/console/app/src/routes/workspace/[id].tsx +++ b/packages/console/app/src/routes/workspace/[id].tsx @@ -2,15 +2,11 @@ import "./[id].css" import { MonthlyLimitSection } from "~/component/workspace/monthly-limit-section" import { NewUserSection } from "~/component/workspace/new-user-section" import { BillingSection } from "~/component/workspace/billing-section" -import { PrivacySection } from "~/component/workspace/privacy-section" import { PaymentSection } from "~/component/workspace/payment-section" import { UsageSection } from "~/component/workspace/usage-section" import { KeySection } from "~/component/workspace/key-section" -import { Show } from "solid-js" -import { useParams } from "@solidjs/router" export default function () { - const params = useParams() return ( <div data-page="workspace-[id]"> <section data-component="title-section"> @@ -29,9 +25,6 @@ export default function () { <KeySection /> <BillingSection /> <MonthlyLimitSection /> - <Show when={isBeta(params.id)}> - <PrivacySection /> - </Show> <UsageSection /> <PaymentSection /> </div> |
