Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[website] Fix pricing casing #42178

Merged
Merged
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
4 changes: 2 additions & 2 deletions docs/src/components/pricing/PricingTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -999,7 +999,7 @@ const premiumData: Record<string, React.ReactNode> = {
'mui-x-development-perpetual': <Info value="Perpetual" />,
'mui-x-updates': <Info value="1 year" />,
// Support
'core-support': <Info value={pending} metadata="priority add-on only" />,
'core-support': <Info value={pending} metadata="Priority add-on only" />,
'x-support': <Info value={yes} metadata="Priority over Pro" />,
'tech-advisory': pending,
'support-duration': <Info value="1 year" />,
Expand All @@ -1017,7 +1017,7 @@ const premiumData: Record<string, React.ReactNode> = {
/>
),
'pre-screening': <Info value={pending} metadata="4 hours (priority add-on only)" />,
'issue-escalation': <Info value={pending} metadata="priority add-on only" />,
'issue-escalation': <Info value={pending} metadata="Priority add-on only" />,
'security-questionnaire': <Info value="Available from 4+ devs" />,
};

Expand Down
Loading