diff --git a/src/components/ProductFeatures.astro b/src/components/ProductFeatures.astro
index c5345136429c77f..e080742c4997735 100644
--- a/src/components/ProductFeatures.astro
+++ b/src/components/ProductFeatures.astro
@@ -56,21 +56,23 @@ const entries = Object.entries(plan);
)}
{additional_descriptions && (
<>
- {value.lite ||
- (value.free && (
+ {value.lite ? (
+
+ Lite:
+
+
+ ) : (
+ value.free && (
Lite:
- {value.lite ? (
-
- ) : (
-
- )}
+
- ))}
+ )
+ )}
>
)}
{value.pro && (
@@ -83,23 +85,23 @@ const entries = Object.entries(plan);
)}
{additional_descriptions && (
<>
- {value.pro_plus ||
- (value.pro && (
+ {value.pro_plus ? (
+
+ Pro Plus:
+
+
+ ) : (
+ value.pro && (
Pro Plus:
- {value.pro_plus ? (
-
- ) : (
-
- )}
+
- ))}
+ )
+ )}
>
)}
{value.biz && (