diff --git a/front-ui/app/components/payment/pikpayButton.js b/front-ui/app/components/payment/pikpayButton.js index 6a6b240..faad63e 100644 --- a/front-ui/app/components/payment/pikpayButton.js +++ b/front-ui/app/components/payment/pikpayButton.js @@ -12,7 +12,7 @@ var sha1 = require('sha1'); var PikpayButton = React.createClass({ render: function() { var total = this.props.amount + this.props.deliveryCost; - total = total * 100; + total = total.toFixed(2) * 100; var order_info = "Info"; var order_number = this.props.cartId; var key = Globals.PikpayKey;