diff --git a/src/components/FeaturesList.jsx b/src/components/FeaturesList.jsx
index 5ca2209..720056b 100644
--- a/src/components/FeaturesList.jsx
+++ b/src/components/FeaturesList.jsx
@@ -15,7 +15,7 @@ const FeaturesList = ({ features, maxVisible = 7 }) => {
{features.map((feature, i) => (
- {feature}
+ {feature.replaceAll(";", ",")}
))}
@@ -29,7 +29,7 @@ const FeaturesList = ({ features, maxVisible = 7 }) => {
{visibleFeatures.map((feature, i) => (
- {feature}
+ {feature.replaceAll(";", ",")}
))}
{showOverflowCounter && (