about summary refs log tree commit diff
path: root/app/assets/javascripts/components/reducers/meta.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/components/reducers/meta.jsx')
-rw-r--r--app/assets/javascripts/components/reducers/meta.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/components/reducers/meta.jsx b/app/assets/javascripts/components/reducers/meta.jsx
index 401be435d..d65c3c36d 100644
--- a/app/assets/javascripts/components/reducers/meta.jsx
+++ b/app/assets/javascripts/components/reducers/meta.jsx
@@ -1,11 +1,11 @@
-import { SET_ACCESS_TOKEN }         from '../actions/meta';
+import { ACCESS_TOKEN_SET }         from '../actions/meta';
 import Immutable                    from 'immutable';
 
 const initialState = Immutable.Map();
 
 export default function meta(state = initialState, action) {
   switch(action.type) {
-    case SET_ACCESS_TOKEN:
+    case ACCESS_TOKEN_SET:
       return state.set('access_token', action.token);
     default:
       return state;