chore(webapp): rename support tier to "Priority" on plan cards and li… (#3692)

This commit is contained in:
Iss
2026-05-27 12:17:40 -04:00
committed by GitHub
parent df96a937db
commit 7324a3307f
2 changed files with 2 additions and 2 deletions
@@ -375,7 +375,7 @@ export class LimitsPresenter extends BasePresenter {
name: "Support level",
description: "Type of support available for your plan",
enabled: true,
value: supportLevel === "slack" ? "Slack" : "Community",
value: supportLevel === "slack" ? "Priority" : "Community",
},
includedUsage: {
name: "Included compute",
@@ -1100,7 +1100,7 @@ function LogRetention({ limits }: { limits: Limits }) {
function SupportLevel({ limits }: { limits: Limits }) {
return (
<FeatureItem checked>
{limits.support === "community" ? "Community support" : "Dedicated Slack support"}
{limits.support === "community" ? "Community support" : "Priority support"}
</FeatureItem>
);
}