Skip to content

Commit

Permalink
Prepend namespace with @@ like Redux INIT does it
Browse files Browse the repository at this point in the history
  • Loading branch information
Kai Schlamp committed Jan 31, 2016
1 parent 45dc930 commit 85d24df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import equal from 'deep-equal';
import Immutable from 'immutable';
import save from './save.js';

const REINIT = 'redux-pouchdb-plus/REINIT';
const INIT = 'redux-pouchdb-plus/INIT';
const SET_REDUCER = 'redux-pouchdb-plus/SET_REDUCER';
const REINIT = '@@redux-pouchdb-plus/REINIT';
const INIT = '@@redux-pouchdb-plus/INIT';
const SET_REDUCER = '@@redux-pouchdb-plus/SET_REDUCER';

const initializedReducers = {};

Expand Down

0 comments on commit 85d24df

Please sign in to comment.