Replace semi colons with commas
Some checks failed
thehideout/TheHideout-UI/pipeline/head There was a failure building this commit

This commit is contained in:
Tom Butcher 2026-01-03 15:54:14 +00:00
parent 99363c9abe
commit 411f872e92

View File

@ -15,7 +15,7 @@ const FeaturesList = ({ features, maxVisible = 7 }) => {
<div className="th-features-list">
{features.map((feature, i) => (
<div key={i} className="th-features-listItem">
{feature}
{feature.replaceAll(";", ",")}
</div>
))}
</div>
@ -29,7 +29,7 @@ const FeaturesList = ({ features, maxVisible = 7 }) => {
<div className="th-features-list">
{visibleFeatures.map((feature, i) => (
<div key={i} className="th-features-listItem">
{feature}
{feature.replaceAll(";", ",")}
</div>
))}
{showOverflowCounter && (