chore(webapp): rename support tier to "Priority" on plan cards and li… (#3692)
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user