Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ const PaymentMethodSelection = forwardRef(function PaymentMethodSelection(
<NewPaymentMethodElement
ref={paymentRef}
pending_subscription_flow_enabled={true}
email={selectedOrganization?.billing_email}
email={selectedOrganization?.billing_email ?? undefined}
readOnly={readOnly}
/>
</Elements>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const getRandomTweet = () => {

const PLAN_HEADINGS = {
tier_pro:
'the Pro plan and create unlimited projects, daily backups and premium support when you need it',
'the Pro plan to unlock unlimited projects, daily backups, and email support whenever you need it',
tier_team: 'the Team plan for SOC2, SSO, priority support and greater data and log retention',
default: 'to a new plan',
} as const
Expand Down
2 changes: 1 addition & 1 deletion apps/studio/pages/new/[slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ const Wizard: NextPageWithLayout = () => {
monthly costs by ${additionalMonthlySpend}, independent of how actively you use it. By
clicking "Confirm", you agree to the additional costs.{' '}
<Link
href="/docs/guides/platform/manage-your-usage/compute"
href="https://supabase.com/docs/guides/platform/manage-your-usage/compute"
target="_blank"
className="underline"
>
Expand Down
2 changes: 1 addition & 1 deletion apps/www/pages/changelog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ function ChangelogPage({ changelog, pageInfo, restPage }: ChangelogPageProps) {
</div>
</div>
<div className="col-span-8 ml-8 lg:ml-0 max-w-[calc(100vw-80px)]">
<article className="prose prose-docs max-w-none">
<article className="prose prose-docs max-w-none [overflow-wrap:break-word]">
<MDXRemote {...entry.source} components={mdxComponents('blog')} />
</article>
</div>
Expand Down
Loading