Skip to content
This repository has been archived by the owner on Feb 19, 2024. It is now read-only.

Commit

Permalink
Fix store/ducks imports and exports after refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
cKellyDesign committed Oct 22, 2019
1 parent df1182a commit 6793aea
Show file tree
Hide file tree
Showing 5 changed files with 72,625 additions and 6 deletions.
72,621 changes: 72,620 additions & 1 deletion build/gisida.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/gisida.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/store/ducks/APP.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { APP } from '../../store/reducers/app';
import { APP } from '../../store/reducers';

export { INIT_APP } from '../constants/actionTypes';
export { initApp } from '../actions/actions';
Expand Down
4 changes: 2 additions & 2 deletions src/store/ducks/MAP.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import reducers from '../reducers/app';
import { MAP } from '../reducers';

export {
MAP_RENDERED,
Expand Down Expand Up @@ -48,4 +48,4 @@ export {
triggerSpinner,
} from '../actions/actions';
export const reducerName = 'map-1';
export default reducers['map-1'];
export default MAP;
2 changes: 1 addition & 1 deletion src/store/ducks/STYLES.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { STYLES } from '../reducers/styles';
import { STYLES } from '../reducers';

export { INIT_STYLES, CHANGE_STYLE } from '../constants/actionTypes';
export { initStyles, changeStyle } from '../actions/actions';
Expand Down

0 comments on commit 6793aea

Please sign in to comment.