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 { ME_FETCH_SUCCESS } from 'gabsocial/actions/me';
|
||||||
import { Map as ImmutableMap, fromJS } from 'immutable';
|
import { Map as ImmutableMap, fromJS } from 'immutable';
|
||||||
|
|
||||||
const initialState = ImmutableMap({
|
const initialState = ImmutableMap();
|
||||||
streaming_api_base_url: null,
|
|
||||||
access_token: null,
|
|
||||||
});
|
|
||||||
|
|
||||||
export default function meta(state = initialState, action) {
|
export default function meta(state = initialState, action) {
|
||||||
switch(action.type) {
|
switch(action.type) {
|
||||||
|
|
Loading…
Reference in a new issue