diff options
| author | Frank <[email protected]> | 2025-09-15 19:26:44 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-09-15 19:26:46 -0400 |
| commit | 6c02d4ce664994dcef7730444b2d1f7404f5767a (patch) | |
| tree | 5d4734bc5e4982e457a0a257c89e8175c5d8aa1f /cloud/app/src | |
| parent | 11154ba6974d3f8cb7a54bbd59e39a784917239d (diff) | |
| download | opencode-6c02d4ce664994dcef7730444b2d1f7404f5767a.tar.gz opencode-6c02d4ce664994dcef7730444b2d1f7404f5767a.zip | |
wip: zen
Diffstat (limited to 'cloud/app/src')
| -rw-r--r-- | cloud/app/src/routes/workspace/[id].tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cloud/app/src/routes/workspace/[id].tsx b/cloud/app/src/routes/workspace/[id].tsx index 8a0ee14d9..a3e14cdf7 100644 --- a/cloud/app/src/routes/workspace/[id].tsx +++ b/cloud/app/src/routes/workspace/[id].tsx @@ -672,6 +672,7 @@ function NewUserSection() { export default function () { const params = useParams() + const balanceInfo = createAsync(() => getBillingInfo(params.id)) return ( <div data-page="workspace-[id]"> @@ -690,7 +691,7 @@ export default function () { <NewUserSection /> <KeySection /> <BillingSection /> - <Show when={createAsync(() => getBillingInfo(params.id))()?.reload}> + <Show when={balanceInfo()?.reload}> <MonthlyLimitSection /> </Show> <UsageSection /> |
