From 1c187e9ce2fef6e0416dad5ab5385de809f85ed0 Mon Sep 17 00:00:00 2001 From: baptistr <baptiste.lemonnier@gmail.com> Date: Tue, 25 Jun 2024 23:19:25 +0200 Subject: [PATCH] fix: bug with comma numbers --- discord/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/discord/index.js b/discord/index.js index dfb9b87..ec45ef8 100644 --- a/discord/index.js +++ b/discord/index.js @@ -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",