summaryrefslogtreecommitdiffhomepage
path: root/cloud/app/src/component/workspace/payment-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/payment-section.tsx
parentcd537707348689c6bf758f73386e8a0e3368e31f (diff)
downloadopencode-ae84d5a7340671a971954d80e26ab04d34e14f7e.tar.gz
opencode-ae84d5a7340671a971954d80e26ab04d34e14f7e.zip
ignore: zen
Diffstat (limited to 'cloud/app/src/component/workspace/payment-section.tsx')
-rw-r--r--cloud/app/src/component/workspace/payment-section.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/cloud/app/src/component/workspace/payment-section.tsx b/cloud/app/src/component/workspace/payment-section.tsx
index f802fa96a..a346cb55f 100644
--- a/cloud/app/src/component/workspace/payment-section.tsx
+++ b/cloud/app/src/component/workspace/payment-section.tsx
@@ -3,6 +3,7 @@ import { query, useParams, createAsync } from "@solidjs/router"
import { For } from "solid-js"
import { withActor } from "~/context/auth.withActor"
import { formatDateUTC, formatDateForTable } from "./common"
+import styles from "./payment-section.module.css"
const getPaymentsInfo = query(async (workspaceID: string) => {
"use server"
@@ -18,7 +19,7 @@ export function PaymentSection() {
return (
payments() &&
payments()!.length > 0 && (
- <section data-component="payments-section">
+ <section class={styles.root}>
<div data-slot="section-title">
<h2>Payments History</h2>
<p>Recent payment transactions.</p>