Created
October 11, 2016 10:29
-
-
Save justinvdm/9c7961f98557247525fd6112ebf0c7aa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/containers/FirstEventContainer.js b/src/containers/FirstEventContainer.js | |
index 9a3b72c..3074b90 100644 | |
--- a/src/containers/FirstEventContainer.js | |
+++ b/src/containers/FirstEventContainer.js | |
@@ -1,7 +1,7 @@ | |
import { connect } from 'react-redux'; | |
import { FirstEvent } from 'src/components'; | |
import { getAuthUserProfile } from 'src/stores/helpers'; | |
-import { changeNavToScheduledCallsTab } from 'src/actions/navigation'; | |
+import { addScheduledCall } from 'src/actions/schedule'; | |
const mapStateToProps = state => ({ | |
@@ -10,5 +10,5 @@ const mapStateToProps = state => ({ | |
export { mapStateToProps }; | |
export default connect(mapStateToProps, { | |
- onGetStartedPress: changeNavToScheduledCallsTab, | |
+ onGetStartedPress: addScheduledCall, | |
})(FirstEvent); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment