set default route back to /discover #1517

Merged
neb-b merged 1 commit from nav-fix into master 2018-05-25 16:45:59 +02:00

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 '/publish'; return '/discover';
}; };
const reducers = {}; const reducers = {};