From 7a676e1d1a6145b99d51e251e3a0641b9d1330bb Mon Sep 17 00:00:00 2001 From: ItsLuiggiYahoo <56616894+ItsLuiggiYahoo@users.noreply.github.com> Date: Sat, 10 Feb 2024 14:40:49 -0300 Subject: [PATCH] Update utils.js --- js/resources/utils.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/js/resources/utils.js b/js/resources/utils.js index 4da5569..7fd5549 100644 --- a/js/resources/utils.js +++ b/js/resources/utils.js @@ -99,7 +99,11 @@ export default { IRL = (bricks.replace(/,/g, '') * 0.2338).toFixed(2) DISPLAY = 'TRY' break + case 7: + IRL = (bricks.replace(/,/g, '') * 4.90).toFixed(2) + DISPLAY = 'BRL' + break } return {bricks: IRL, display: DISPLAY} } -} \ No newline at end of file +}