Skip to content

Commit

Permalink
fix(cart/actions): fix pluckProps import
Browse files Browse the repository at this point in the history
it is now a default import instead of a name one
  • Loading branch information
aneurysmjs committed Oct 7, 2019
1 parent e389ec3 commit e25e54b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/app/store/modules/cart/actions/cartAction.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* eslint-disable */

import cartAction from './cartAction';

describe('cartAction action', () => {
Expand Down
4 changes: 2 additions & 2 deletions src/app/store/modules/cart/actions/cartAction.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as types from '~/store/ActionTypes';
import * as types from '~/store/ActionTypes';

import { makeActionCreator } from '~/store/helpers/makeActionCreator';
import makeActionCreator from '~/store/helpers/makeActionCreator';

export default makeActionCreator(types.CART_DATA);

0 comments on commit e25e54b

Please sign in to comment.