Skip to content

Commit a48e718

Browse files
committed
bump version
1 parent c886960 commit a48e718

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

examples/react-native/Example.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const styles = StyleSheet.create({
3535
},
3636
});
3737

38-
const defaultReducer = Reducer(Actions);
38+
const defaultReducer = new Reducer();
3939
const reducerCreate = () => {
4040
return (state, action) => {
4141
console.log('reducer: ACTION:', action);

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-router-flux",
3-
"version": "4.0.3",
3+
"version": "4.0.4",
44
"description": "React Native Router using Flux architecture",
55
"repository": {
66
"type": "git",

src/Reducer.js

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ import { getActiveState, popPrevious } from './State';
55

66
export default function createReducer(navigationStore) {
77
return (state, action) => {
8+
if (!navigationStore) {
9+
navigationStore = require('./navigationStore').default;
10+
}
811
const { type, routeName } = action;
912
if (type === ActionConst.POP_TO) {
1013
let nextScene = '';

0 commit comments

Comments
 (0)