aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/planSelection/containers/PlanSelectionScreen.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/planSelection/containers/PlanSelectionScreen.js')
-rw-r--r--src/features/planSelection/containers/PlanSelectionScreen.js9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/features/planSelection/containers/PlanSelectionScreen.js b/src/features/planSelection/containers/PlanSelectionScreen.js
index fba65506e..594829c01 100644
--- a/src/features/planSelection/containers/PlanSelectionScreen.js
+++ b/src/features/planSelection/containers/PlanSelectionScreen.js
@@ -9,6 +9,7 @@ import UserStore from '../../../stores/UserStore';
9import PlanSelection from '../components/PlanSelection'; 9import PlanSelection from '../components/PlanSelection';
10import ErrorBoundary from '../../../components/util/ErrorBoundary'; 10import ErrorBoundary from '../../../components/util/ErrorBoundary';
11import { planSelectionStore } from '..'; 11import { planSelectionStore } from '..';
12import PaymentStore from '../../../stores/PaymentStore';
12 13
13const messages = defineMessages({ 14const messages = defineMessages({
14 dialogTitle: { 15 dialogTitle: {
@@ -109,15 +110,11 @@ PlanSelectionScreen.wrappedComponent.propTypes = {
109 user: PropTypes.instanceOf(UserStore).isRequired, 110 user: PropTypes.instanceOf(UserStore).isRequired,
110 }).isRequired, 111 }).isRequired,
111 actions: PropTypes.shape({ 112 actions: PropTypes.shape({
112 payment: PropTypes.shape({ 113 payment: PropTypes.instanceOf(PaymentStore),
113 upgradeAccount: PropTypes.func.isRequired,
114 }),
115 planSelection: PropTypes.shape({ 114 planSelection: PropTypes.shape({
116 downgradeAccount: PropTypes.func.isRequired, 115 downgradeAccount: PropTypes.func.isRequired,
117 hideOverlay: PropTypes.func.isRequired, 116 hideOverlay: PropTypes.func.isRequired,
118 }), 117 }),
119 user: PropTypes.shape({ 118 user: PropTypes.instanceOf(UserStore).isRequired,
120 activateTrial: PropTypes.func.isRequired,
121 }),
122 }).isRequired, 119 }).isRequired,
123}; 120};