Skip to content

Commit 4bfb9fa

Browse files
committed
[dashboard] update description
1 parent 2ab0cc4 commit 4bfb9fa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

components/dashboard/src/components/UsageBasedBillingConfig.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,11 @@ export default function UsageBasedBillingConfig({ attributionId }: Props) {
211211

212212
return (
213213
<div className="mb-16">
214-
<h2 className="text-gray-500">Manage pay-as-you-go billing.</h2>
214+
<h2 className="text-gray-500">
215+
{AttributionId.parse(attributionId)?.kind === "user"
216+
? "Manage billing for your personal account."
217+
: "Manage billing for your team."}
218+
</h2>
215219
<div className="max-w-xl flex flex-col">
216220
{errorMessage && (
217221
<Alert className="max-w-xl mt-2" closable={false} showIcon={true} type="error">

0 commit comments

Comments
 (0)