From 10fbd4a9ff69400d8a5147089f2a6f876ca75dd8 Mon Sep 17 00:00:00 2001 From: James Ritchie Date: Thu, 30 Nov 2023 12:53:16 +0000 Subject: [PATCH] Fixed some illegal markup when using tooltips --- .../webapp/app/components/billing/PricingTiers.tsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/apps/webapp/app/components/billing/PricingTiers.tsx b/apps/webapp/app/components/billing/PricingTiers.tsx index 937823352..2c283ac50 100644 --- a/apps/webapp/app/components/billing/PricingTiers.tsx +++ b/apps/webapp/app/components/billing/PricingTiers.tsx @@ -42,7 +42,7 @@ export function PricingTiers({ return (
@@ -354,17 +354,15 @@ function TierLimit({
{pricedMetric ? ( <> - - {children} - +
{children}
) : ( <>
- +
{children} - +
)}
@@ -385,9 +383,9 @@ function FeatureItem({ checked, children }: { checked?: boolean; children: React ) : ( )} - +
{children} - +
); }