Flow, coding style
This commit is contained in:
parent
122be9e0e0
commit
da03b49754
|
@ -1,3 +1,5 @@
|
|||
// @flow
|
||||
|
||||
import { equals, set, ReducerRegistry } from '../redux';
|
||||
|
||||
import { SET_CALL_OVERLAY_VISIBLE, SET_JWT } from './actionTypes';
|
||||
|
@ -7,6 +9,7 @@ import { SET_CALL_OVERLAY_VISIBLE, SET_JWT } from './actionTypes';
|
|||
*
|
||||
* @private
|
||||
* @type {{
|
||||
* callOverlayVisible: ?boolean
|
||||
* isGuest: boolean
|
||||
* }}
|
||||
*/
|
||||
|
@ -38,7 +41,8 @@ const _INITIAL_STATE = {
|
|||
* specified {@code action}.
|
||||
*/
|
||||
ReducerRegistry.register(
|
||||
'features/base/jwt', (state = _INITIAL_STATE, action) => {
|
||||
'features/base/jwt',
|
||||
(state = _INITIAL_STATE, action) => {
|
||||
switch (action.type) {
|
||||
case SET_CALL_OVERLAY_VISIBLE:
|
||||
return set(state, 'callOverlayVisible', action.callOverlayVisible);
|
||||
|
@ -56,4 +60,4 @@ ReducerRegistry.register(
|
|||
}
|
||||
|
||||
return state;
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue