summaryrefslogtreecommitdiffhomepage
path: root/cloud/app/src/component/workspace/usage-section.tsx
diff options
context:
space:
mode:
authorJay V <[email protected]>2025-09-16 17:09:27 -0400
committerJay V <[email protected]>2025-09-16 17:17:17 -0400
commitae84d5a7340671a971954d80e26ab04d34e14f7e (patch)
tree3a05ef436555978a2ea87f5b355ed28807bd2af3 /cloud/app/src/component/workspace/usage-section.tsx
parentcd537707348689c6bf758f73386e8a0e3368e31f (diff)
downloadopencode-ae84d5a7340671a971954d80e26ab04d34e14f7e.tar.gz
opencode-ae84d5a7340671a971954d80e26ab04d34e14f7e.zip
ignore: zen
Diffstat (limited to 'cloud/app/src/component/workspace/usage-section.tsx')
-rw-r--r--cloud/app/src/component/workspace/usage-section.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/cloud/app/src/component/workspace/usage-section.tsx b/cloud/app/src/component/workspace/usage-section.tsx
index a2ad507af..37265d8e5 100644
--- a/cloud/app/src/component/workspace/usage-section.tsx
+++ b/cloud/app/src/component/workspace/usage-section.tsx
@@ -3,6 +3,7 @@ import { query, useParams, createAsync } from "@solidjs/router"
import { createMemo, For, Show } from "solid-js"
import { formatDateUTC, formatDateForTable } from "./common"
import { withActor } from "~/context/auth.withActor"
+import styles from "./usage-section.module.css"
const getUsageInfo = query(async (workspaceID: string) => {
"use server"
@@ -16,7 +17,7 @@ export function UsageSection() {
const usage = createAsync(() => getUsageInfo(params.id))
return (
- <section data-component="usage-section">
+ <section class={styles.root}>
<div data-slot="section-title">
<h2>Usage History</h2>
<p>Recent API usage and costs.</p>