set default path back to discover

This commit is contained in:
Sean Yesmunt 2018-09-08 12:44:15 -04:00
parent 83d5c076e4
commit db0b77504d

View file

@ -3,7 +3,7 @@ import * as ACTIONS from 'constants/action_types';
const getCurrentPath = () => { const getCurrentPath = () => {
const { hash } = document.location; const { hash } = document.location;
if (hash !== '') return hash.replace(/^#/, ''); if (hash !== '') return hash.replace(/^#/, '');
return '/user_history'; return '/discover';
}; };
const reducers = {}; const reducers = {};