aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers/auth/SetupAssistantScreen.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/containers/auth/SetupAssistantScreen.js')
-rw-r--r--src/containers/auth/SetupAssistantScreen.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/containers/auth/SetupAssistantScreen.js b/src/containers/auth/SetupAssistantScreen.js
index 8cdd95a88..f6392712d 100644
--- a/src/containers/auth/SetupAssistantScreen.js
+++ b/src/containers/auth/SetupAssistantScreen.js
@@ -14,8 +14,6 @@ import ServicesStore from '../../stores/ServicesStore';
14import RecipesStore from '../../stores/RecipesStore'; 14import RecipesStore from '../../stores/RecipesStore';
15import UserStore from '../../stores/UserStore'; 15import UserStore from '../../stores/UserStore';
16 16
17@inject('stores', 'actions')
18@observer
19class SetupAssistantScreen extends Component { 17class SetupAssistantScreen extends Component {
20 constructor(props) { 18 constructor(props) {
21 super(props); 19 super(props);
@@ -120,7 +118,7 @@ class SetupAssistantScreen extends Component {
120 } 118 }
121} 119}
122 120
123SetupAssistantScreen.wrappedComponent.propTypes = { 121SetupAssistantScreen.propTypes = {
124 stores: PropTypes.shape({ 122 stores: PropTypes.shape({
125 services: PropTypes.instanceOf(ServicesStore), 123 services: PropTypes.instanceOf(ServicesStore),
126 router: PropTypes.instanceOf(RouterStore).isRequired, 124 router: PropTypes.instanceOf(RouterStore).isRequired,
@@ -134,4 +132,4 @@ SetupAssistantScreen.wrappedComponent.propTypes = {
134 }).isRequired, 132 }).isRequired,
135}; 133};
136 134
137export default SetupAssistantScreen; 135export default inject('stores', 'actions')(observer(SetupAssistantScreen));