Skip to content

Commit 692f0b2

Browse files
authored
fix: update Change Plan modal caption and fix broken Compute Confirmation link (supabase#36539)
* Pro Plan heading caption * Fixed Comput costs docs link * Revert to premium support * Email support * Fixed typing error in PaymentMethodSelection
1 parent bd95e9a commit 692f0b2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/studio/components/interfaces/Organization/BillingSettings/Subscription/PaymentMethodSelection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ const PaymentMethodSelection = forwardRef(function PaymentMethodSelection(
287287
<NewPaymentMethodElement
288288
ref={paymentRef}
289289
pending_subscription_flow_enabled={true}
290-
email={selectedOrganization?.billing_email}
290+
email={selectedOrganization?.billing_email ?? undefined}
291291
readOnly={readOnly}
292292
/>
293293
</Elements>

apps/studio/components/interfaces/Organization/BillingSettings/Subscription/SubscriptionPlanUpdateDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const getRandomTweet = () => {
4343

4444
const PLAN_HEADINGS = {
4545
tier_pro:
46-
'the Pro plan and create unlimited projects, daily backups and premium support when you need it',
46+
'the Pro plan to unlock unlimited projects, daily backups, and email support whenever you need it',
4747
tier_team: 'the Team plan for SOC2, SSO, priority support and greater data and log retention',
4848
default: 'to a new plan',
4949
} as const

apps/studio/pages/new/[slug].tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,7 @@ const Wizard: NextPageWithLayout = () => {
967967
monthly costs by ${additionalMonthlySpend}, independent of how actively you use it. By
968968
clicking "Confirm", you agree to the additional costs.{' '}
969969
<Link
970-
href="/docs/guides/platform/manage-your-usage/compute"
970+
href="https://supabase.com/docs/guides/platform/manage-your-usage/compute"
971971
target="_blank"
972972
className="underline"
973973
>

0 commit comments

Comments
 (0)