Skip to content

Commit e0e5327

Browse files
committed
chore(webapp): rename support tier to "Priority" on plan cards and limits page
1 parent 9ff410b commit e0e5327

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/webapp/app/presenters/v3/LimitsPresenter.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ export class LimitsPresenter extends BasePresenter {
375375
name: "Support level",
376376
description: "Type of support available for your plan",
377377
enabled: true,
378-
value: supportLevel === "slack" ? "Slack" : "Community",
378+
value: supportLevel === "slack" ? "Priority" : "Community",
379379
},
380380
includedUsage: {
381381
name: "Included compute",

apps/webapp/app/routes/resources.orgs.$organizationSlug.select-plan.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1100,7 +1100,7 @@ function LogRetention({ limits }: { limits: Limits }) {
11001100
function SupportLevel({ limits }: { limits: Limits }) {
11011101
return (
11021102
<FeatureItem checked>
1103-
{limits.support === "community" ? "Community support" : "Dedicated Slack support"}
1103+
{limits.support === "community" ? "Community support" : "Priority support"}
11041104
</FeatureItem>
11051105
);
11061106
}

0 commit comments

Comments
 (0)