diff --git a/static/js/shop.jsx b/static/js/shop.jsx
index a696a397..af0edac9 100644
--- a/static/js/shop.jsx
+++ b/static/js/shop.jsx
@@ -801,6 +801,7 @@ class OrderSumary extends React.PureComponent {
static get propTypes() {
return {
+ currency: PropTypes.string,
modes: PropTypes.array,
currentMode: PropTypes.string,
summary: PropTypes.array,
@@ -861,6 +862,7 @@ class OrderSumary extends React.PureComponent {
render() {
const {
+ currency,
modes,
currentMode,
summary,
@@ -889,7 +891,7 @@ class OrderSumary extends React.PureComponent {
{mode.name} |
- {`${mode.currency} ${mode.price}`}
+ {`${currency} ${mode.price}`}
|