Replace semi colons with commas
Some checks failed
thehideout/TheHideout-UI/pipeline/head There was a failure building this commit
Some checks failed
thehideout/TheHideout-UI/pipeline/head There was a failure building this commit
This commit is contained in:
parent
99363c9abe
commit
411f872e92
@ -15,7 +15,7 @@ const FeaturesList = ({ features, maxVisible = 7 }) => {
|
|||||||
<div className="th-features-list">
|
<div className="th-features-list">
|
||||||
{features.map((feature, i) => (
|
{features.map((feature, i) => (
|
||||||
<div key={i} className="th-features-listItem">
|
<div key={i} className="th-features-listItem">
|
||||||
{feature}
|
{feature.replaceAll(";", ",")}
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
@ -29,7 +29,7 @@ const FeaturesList = ({ features, maxVisible = 7 }) => {
|
|||||||
<div className="th-features-list">
|
<div className="th-features-list">
|
||||||
{visibleFeatures.map((feature, i) => (
|
{visibleFeatures.map((feature, i) => (
|
||||||
<div key={i} className="th-features-listItem">
|
<div key={i} className="th-features-listItem">
|
||||||
{feature}
|
{feature.replaceAll(";", ",")}
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
{showOverflowCounter && (
|
{showOverflowCounter && (
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user