diff --git a/src/components/ProductFeatures.astro b/src/components/ProductFeatures.astro index 73ad198d54e336..f3ef124eab8bb7 100644 --- a/src/components/ProductFeatures.astro +++ b/src/components/ProductFeatures.astro @@ -38,7 +38,7 @@ const entries = Object.entries(plan); {value.title}

)} - {Object.entries(value.properties).map(([_, value]: [string, any]) => ( + {Object.values(value.properties).map((value: any) => (

{value.summary}

)}

))}