diff options
3 files changed, 3 insertions, 4 deletions
diff --git a/packages/console/app/src/routes/workspace/[id]/billing/payment-section.tsx b/packages/console/app/src/routes/workspace/[id]/billing/payment-section.tsx index c830cee8a..0fb2a0df6 100644 --- a/packages/console/app/src/routes/workspace/[id]/billing/payment-section.tsx +++ b/packages/console/app/src/routes/workspace/[id]/billing/payment-section.tsx @@ -96,7 +96,7 @@ export function PaymentSection() { }} data-slot="receipt-button" > - view + View </button> </td> </tr> diff --git a/packages/console/app/src/routes/workspace/[id]/index.tsx b/packages/console/app/src/routes/workspace/[id]/index.tsx index 6d8bfb0ec..8f7678f21 100644 --- a/packages/console/app/src/routes/workspace/[id]/index.tsx +++ b/packages/console/app/src/routes/workspace/[id]/index.tsx @@ -52,7 +52,7 @@ export default function () { } > <span data-slot="balance"> - Current balance: <b>${balanceAmount() === "-0.00" ? "0.00" : balanceAmount()}</b> + Current balance <b>${balanceAmount() === "-0.00" ? "0.00" : balanceAmount()}</b> </span> </Show> </span> diff --git a/packages/console/app/src/routes/workspace/[id]/model-section.tsx b/packages/console/app/src/routes/workspace/[id]/model-section.tsx index b4a38d050..68fc1e040 100644 --- a/packages/console/app/src/routes/workspace/[id]/model-section.tsx +++ b/packages/console/app/src/routes/workspace/[id]/model-section.tsx @@ -67,8 +67,7 @@ export function ModelSection() { <div data-slot="section-title"> <h2>Models</h2> <p> - Manage which models workspace members can access. Requests will fail if a member tries to use a disabled - model.{userInfo()?.isAdmin ? "" : " To use a disabled model, contact your workspace’s admin."} + Manage which models workspace members can access. <a href="/docs/zen#pricing ">Learn more</a>. </p> </div> <div data-slot="models-list"> |
