We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ab0cc4 commit 4bfb9faCopy full SHA for 4bfb9fa
components/dashboard/src/components/UsageBasedBillingConfig.tsx
@@ -211,7 +211,11 @@ export default function UsageBasedBillingConfig({ attributionId }: Props) {
211
212
return (
213
<div className="mb-16">
214
- <h2 className="text-gray-500">Manage pay-as-you-go billing.</h2>
+ <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>
219
<div className="max-w-xl flex flex-col">
220
{errorMessage && (
221
<Alert className="max-w-xl mt-2" closable={false} showIcon={true} type="error">
0 commit comments