Skip to content

Commit 7d80892

Browse files
authored
Remove erroneous 100 operations limit from Pricing (#6874)
1 parent d90e873 commit 7d80892

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/web/docs/src/components/pricing/plans-table.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,12 @@ export function PlansTable({ className }: { className?: string }) {
122122
<tr>
123123
<PlansTableCell className="whitespace-pre">Operations per month</PlansTableCell>
124124
<PlansTableCell activePlan={activePlan} plan="Hobby">
125-
Limit of 100 operations
125+
1M operations per month
126126
</PlansTableCell>
127127
<PlansTableCell activePlan={activePlan} plan="Pro">
128128
1M operations per month
129129
<br className="max-sm:inline" />
130-
Then $10 per million operations
130+
<span className="font-normal">Then $10 per million operations</span>
131131
</PlansTableCell>
132132
<PlansTableCell activePlan={activePlan} plan="Enterprise">
133133
Custom operation limit
@@ -411,7 +411,7 @@ function PlansTableCell({
411411
<td
412412
aria-hidden={plan !== currentPlan}
413413
className={cn(
414-
'border-beige-400 border-b border-r p-4 first:border-l first:font-medium max-md:w-1/2 max-sm:text-sm sm:py-6 md:w-1/4 [&:not(:first-child)]:border-l-0 [&:not(:first-child)]:text-center [&:not(:first-child)]:text-sm [&:not(:first-child)]:text-green-800 md:[.subheader+tr>&:last-child]:rounded-tr-3xl max-md:[.subheader+tr>&:not(:first-child,:has(+td[aria-hidden=false]))]:rounded-tr-3xl [.subheader+tr>&]:border-t [.subheader+tr>&]:first:rounded-tl-3xl md:[tr:is(:has(+.subheader),:last-child)>&:last-child]:rounded-br-3xl max-md:[tr:is(:has(+.subheader),:last-child)>&:not(:first-child,:has(+td[aria-hidden=false]))]:rounded-br-3xl [tr:is(:last-child,:has(+.subheader))>&]:first:rounded-bl-3xl',
414+
'border-beige-400 border-b border-r p-4 font-medium first:border-l first:font-medium max-md:w-1/2 max-sm:text-sm sm:py-6 md:w-1/4 [&:not(:first-child)]:border-l-0 [&:not(:first-child)]:text-center [&:not(:first-child)]:text-sm [&:not(:first-child)]:text-green-800 md:[.subheader+tr>&:last-child]:rounded-tr-3xl max-md:[.subheader+tr>&:not(:first-child,:has(+td[aria-hidden=false]))]:rounded-tr-3xl [.subheader+tr>&]:border-t [.subheader+tr>&]:first:rounded-tl-3xl md:[tr:is(:has(+.subheader),:last-child)>&:last-child]:rounded-br-3xl max-md:[tr:is(:has(+.subheader),:last-child)>&:not(:first-child,:has(+td[aria-hidden=false]))]:rounded-br-3xl [tr:is(:last-child,:has(+.subheader))>&]:first:rounded-bl-3xl',
415415
plan && plan !== currentPlan && 'max-md:hidden',
416416
className,
417417
)}

0 commit comments

Comments
 (0)