diff --git a/front-ui/app/components/cart/checkoutPage.js b/front-ui/app/components/cart/checkoutPage.js
index 2b92b0d..d83ea6c 100644
--- a/front-ui/app/components/cart/checkoutPage.js
+++ b/front-ui/app/components/cart/checkoutPage.js
@@ -20,7 +20,7 @@ var CheckoutPage = React.createClass({
var choosePayment = (
);
diff --git a/front-ui/app/components/payment/paymentSelect.js b/front-ui/app/components/payment/paymentSelect.js
index ea2e72f..22ed22d 100644
--- a/front-ui/app/components/payment/paymentSelect.js
+++ b/front-ui/app/components/payment/paymentSelect.js
@@ -11,7 +11,7 @@ var PaymentSelect = React.createClass({
render: function() {
return (
);
}
});
diff --git a/front-ui/app/components/payment/paypalButton.js b/front-ui/app/components/payment/paypalButton.js
index 7adb253..93e29ee 100644
--- a/front-ui/app/components/payment/paypalButton.js
+++ b/front-ui/app/components/payment/paypalButton.js
@@ -8,7 +8,9 @@ var Router = require('react-router');
var PaypalButton = React.createClass({
render: function() {
- return (
+ var deliveryDestination = JSON.stringify(this.props.deliveryDestination);
+
+ return (
);