We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 229f893 commit 71b2523Copy full SHA for 71b2523
lib/structures/DealsEmbed.ts
@@ -135,6 +135,9 @@ export default class DealsEmbed extends BasicEmbed {
135
}
136
137
const free = `FREE from ${historicalLow.shop.name}`;
138
+ const price = `${toCurrency(historicalLow.price.amount)} from ${
139
+ historicalLow.shop.name
140
+ }`;
141
const priceCut = `${toCurrency(historicalLow.price.amount)} (-${
142
historicalLow.cut
143
}%) from ${historicalLow.shop.name}`;
@@ -146,7 +149,7 @@ export default class DealsEmbed extends BasicEmbed {
146
149
? free
147
150
: historicalLow.price.amount < historicalLow.regular.amount
148
151
? priceCut
- : 'None',
152
+ : price,
153
});
154
155
0 commit comments