diff --git a/src/components/modals/main/marketplace/Item.jsx b/src/components/modals/main/marketplace/Item.jsx
index 384c43b5..d80cd395 100644
--- a/src/components/modals/main/marketplace/Item.jsx
+++ b/src/components/modals/main/marketplace/Item.jsx
@@ -126,16 +126,18 @@ export default class Item extends PureComponent {
{this.props.data.data.quotes ? (
<>
-
- | {variables.getMessage('modals.main.settings.sections.quote.title')} |
- {variables.getMessage('modals.main.settings.sections.quote.author')} |
-
- {this.props.data.data.quotes.slice(0, this.state.count).map((quote, index) => (
-
- | {quote.quote} |
- {quote.author} |
+
+
+ | {variables.getMessage('modals.main.settings.sections.quote.title')} |
+ {variables.getMessage('modals.main.settings.sections.quote.author')} |
- ))}
+ {this.props.data.data.quotes.slice(0, this.state.count).map((quote, index) => (
+
+ | {quote.quote} |
+ {quote.author} |
+
+ ))}
+
this.incrementCount('quotes')}>
@@ -157,16 +159,18 @@ export default class Item extends PureComponent {
{this.props.data.data.settings ? (
<>
-
- | {variables.getMessage('modals.main.marketplace.product.setting')} |
- {variables.getMessage('modals.main.marketplace.product.value')} |
-
- {Object.entries(this.props.data.data.settings).slice(0, this.state.count).map(([key, value]) => (
-
- | {key} |
- {value} |
+
+
+ | {variables.getMessage('modals.main.marketplace.product.setting')} |
+ {variables.getMessage('modals.main.marketplace.product.value')} |
- ))}
+ {Object.entries(this.props.data.data.settings).slice(0, this.state.count).map(([key, value]) => (
+
+ | {key} |
+ {value} |
+
+ ))}
+
this.incrementCount('settings')}>