Skip to content

Commit

Permalink
fix: bug with comma numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
baptistr committed Jun 25, 2024
1 parent a98303c commit 1c187e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions discord/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,15 +315,15 @@ client.on('interactionCreate', async interaction => {
fields: [
{
name: "Yield (that you accept with new price of the offer)",
value: yieldMin
value: `${yieldMin} %`
},
{
name: "Delta Price (max value (in %) relative to the initial token price that you accept)",
value: deltaMax
value: `${deltaMax} %`
},
{
name: "Minimum quantity (0 = accepts any quantity)",
value: quantityMin
value: `${quantityMin}`
},
{
name: "Blacklisted properties",
Expand Down

0 comments on commit 1c187e9

Please sign in to comment.