Skip to content

Commit

Permalink
Merge pull request #973 from mdhaman/fix-featured-planning
Browse files Browse the repository at this point in the history
(fix) Fixing the imports for featured planning modal.
  • Loading branch information
Mayur Dhamanwala committed Aug 23, 2018
2 parents 9b3fc07 + c475387 commit dfa6309
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/actions/modal.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const showModal = ({modalType, modalProps = undefined}) => ({
export const showModal = ({modalType, modalProps = {}}) => ({
type: 'SHOW_MODAL',
modalType: modalType,
modalProps: modalProps,
Expand Down
3 changes: 2 additions & 1 deletion client/components/ModalsContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ import {
SelectItemModal,
IgnoreCancelSaveModal,
} from './index';
import {FeaturedPlanningModal, UnlockFeaturedPlanning} from './Planning';
import {FeaturedPlanningModal} from './Planning/FeaturedPlanning/FeaturedPlanningModal';
import {UnlockFeaturedPlanning} from './Planning/FeaturedPlanning/UnlockFeaturedPlanning';
import {EditorModalPanel} from './Main';
import {MODALS, ITEM_TYPE} from '../constants';

Expand Down

0 comments on commit dfa6309

Please sign in to comment.