Skip to content

Instantly share code, notes, and snippets.

@justinvdm
Created October 11, 2016 10:29
Show Gist options
  • Save justinvdm/9c7961f98557247525fd6112ebf0c7aa to your computer and use it in GitHub Desktop.
Save justinvdm/9c7961f98557247525fd6112ebf0c7aa to your computer and use it in GitHub Desktop.
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