From 411f872e92ec1e1af41ac3c093ac688044332261 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sat, 3 Jan 2026 15:54:14 +0000 Subject: [PATCH] Replace semi colons with commas --- src/components/FeaturesList.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 && (