File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
packages/web/docs/src/components/pricing Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ function PlanFeaturesListItem({
64
64
}
65
65
66
66
const USAGE_DATA_RETENTION_EXPLAINER = 'How long your GraphQL operations are stored on Hive' ;
67
- const OPERATIONS_EXPLAINER = 'GraphQL operations reported to GraphQL Hive' ;
67
+ const OPERATIONS_EXPLAINER = 'GraphQL operations reported to Hive Console ' ;
68
68
69
69
export function Pricing ( { className } : { className ?: string } ) : ReactElement {
70
70
type PlanType = 'Hobby' | 'Pro' | 'Enterprise' ;
@@ -272,13 +272,17 @@ export function Pricing({ className }: { className?: string }): ReactElement {
272
272
< PlanFeaturesListItem
273
273
icon = { < OperationsIcon /> }
274
274
category = "Operations per month"
275
- features = { [ 'Custom operations limit' ] }
275
+ features = { [
276
+ 'Custom operation limit' ,
277
+ 'Large request volume discount' ,
278
+ 'Ability to exceed operation limit without loss of data' ,
279
+ ] }
276
280
tooltip = { OPERATIONS_EXPLAINER }
277
281
/>
278
282
< PlanFeaturesListItem
279
283
icon = { < RetentionIcon /> }
280
284
category = "Usage data retention"
281
- features = { [ 'One year contract ' ] }
285
+ features = { [ 'One year or more ' ] }
282
286
tooltip = { USAGE_DATA_RETENTION_EXPLAINER }
283
287
/>
284
288
< PlanFeaturesListItem
You can’t perform that action at this time.
0 commit comments