diff --git a/client/coral-embed-stream/src/Embed.js b/client/coral-embed-stream/src/Embed.js index 42f41874c..ab5033c5a 100644 --- a/client/coral-embed-stream/src/Embed.js +++ b/client/coral-embed-stream/src/Embed.js @@ -6,7 +6,7 @@ import isEqual from 'lodash/isEqual'; import I18n from 'coral-framework/modules/i18n/i18n'; import translations from 'coral-framework/translations'; const lang = new I18n(translations); -import {graphImporter} from 'coral-framework/helpers/importer'; +import {graphImporter} from 'coral-framework/helpers/plugins'; import {TabBar, Tab, TabContent, Spinner} from 'coral-ui'; @@ -128,7 +128,7 @@ class Embed extends Component { const pluginProps = { ...this.props, - ...boundActionCreators + actions: boundActionCreators }; return ( diff --git a/client/coral-framework/actions/index.js b/client/coral-framework/actions/index.js index be107a613..1168c9c9a 100644 --- a/client/coral-framework/actions/index.js +++ b/client/coral-framework/actions/index.js @@ -1,7 +1,7 @@ import * as authActions from './auth'; import * as assetActions from './asset'; import * as notificationActions from './notification'; -import {actionsImporter} from '../helpers/importer'; +import {actionsImporter} from '../helpers/plugins'; export default { authActions, diff --git a/client/coral-framework/components/Slot.js b/client/coral-framework/components/Slot.js index 54cb96271..0288bbc51 100644 --- a/client/coral-framework/components/Slot.js +++ b/client/coral-framework/components/Slot.js @@ -1,12 +1,12 @@ import React, {Component} from 'react'; -import {importer as injectPlugins} from 'coral-framework/helpers/importer'; +import {injectPlugins} from 'coral-framework/helpers/plugins'; class Slot extends Component { render() { - const {pluginProps: actions, ...props} = this.props; + const {pluginProps, ...props} = this.props; return (