Adding changes

This commit is contained in:
Belen Curcio
2017-05-10 15:02:43 -03:00
parent 8c219c1c4d
commit 74ffc00c20
2 changed files with 3 additions and 7 deletions
@@ -6,9 +6,4 @@ export const setActiveTab = (tab) => (dispatch, getState) => {
if (getState().stream.commentId) {
dispatch(viewAllComments());
}
};
export const addExternalConfig = externalConfig => ({
type: 'ADD_EXTERNAL_CONFIG',
externalConfig
});
};
@@ -92,7 +92,8 @@ const mapStateToProps = state => ({
commentId: state.stream.commentId,
assetId: state.stream.assetId,
assetUrl: state.stream.assetUrl,
activeTab: state.embed.activeTab
activeTab: state.embed.activeTab,
config: state.config
});
const mapDispatchToProps = dispatch =>