diff --git a/front-ui/app/components/cart/cartPage.js b/front-ui/app/components/cart/cartPage.js
index c15507c..7cd01cc 100644
--- a/front-ui/app/components/cart/cartPage.js
+++ b/front-ui/app/components/cart/cartPage.js
@@ -25,10 +25,8 @@ var CartPage = React.createClass({
-
{ Globals.FormatCurrency(price) }
-
X
-
-
=
+
{ Globals.FormatCurrency(price) }
+
{ Globals.FormatCurrency(count * price) }
diff --git a/front-ui/app/stores/cartStore.js b/front-ui/app/stores/cartStore.js
index ea8b91e..dbd2b6f 100644
--- a/front-ui/app/stores/cartStore.js
+++ b/front-ui/app/stores/cartStore.js
@@ -121,6 +121,7 @@ var confirmOrder = function() {
success: function() {
console.log("done");
NavigationActions.goToThankYou();
+ loadCart();
}
});
};