Remove uneeded fields from meta reducer
This commit is contained in:
parent
10b6a19e0a
commit
3812674a88
1 changed files with 1 additions and 4 deletions
|
@ -4,10 +4,7 @@ import { STORE_HYDRATE } from '../actions/store';
|
|||
import { ME_FETCH_SUCCESS } from 'gabsocial/actions/me';
|
||||
import { Map as ImmutableMap, fromJS } from 'immutable';
|
||||
|
||||
const initialState = ImmutableMap({
|
||||
streaming_api_base_url: null,
|
||||
access_token: null,
|
||||
});
|
||||
const initialState = ImmutableMap();
|
||||
|
||||
export default function meta(state = initialState, action) {
|
||||
switch(action.type) {
|
||||
|
|
Loading…
Reference in a new issue