Remove uneeded fields from meta reducer

This commit is contained in:
Alex Gleason 2020-04-17 18:29:45 -05:00
parent 10b6a19e0a
commit 3812674a88
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -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) {