Skip to content

Commit

Permalink
disable feature for multicurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
superdav42 committed Aug 20, 2024
1 parent 38ad53a commit 282ce9a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions view/frontend/web/usage.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,10 @@ define([
finalPrice = 0;
terms = "";
}

if (95 !== ((finalPrice * 100) % 100)) {
finalPrice = Math.round(finalPrice);
}
// This is tricky with multiple currencies, so I am disabling this for now.
// if (95 !== ((finalPrice * 100) % 100)) {
// finalPrice = Math.round(finalPrice);
// }

$(self.options.priceHolderSelector).trigger('updatePrice', {
'prices': {
Expand Down

0 comments on commit 282ce9a

Please sign in to comment.