|
|
@ -56,7 +56,7 @@ import {
|
|
|
|
PrivacyPolicy,
|
|
|
|
PrivacyPolicy,
|
|
|
|
} from './util/async-components';
|
|
|
|
} from './util/async-components';
|
|
|
|
import { HotKeys } from 'react-hotkeys';
|
|
|
|
import { HotKeys } from 'react-hotkeys';
|
|
|
|
import initialState, { me, owner, singleUserMode, showTrends } from '../../initial_state';
|
|
|
|
import initialState, { me, owner, singleUserMode, showTrends, trendsAsLanding } from '../../initial_state';
|
|
|
|
import { closeOnboarding, INTRODUCTION_VERSION } from 'flavours/glitch/actions/onboarding';
|
|
|
|
import { closeOnboarding, INTRODUCTION_VERSION } from 'flavours/glitch/actions/onboarding';
|
|
|
|
import { defineMessages, FormattedMessage, injectIntl } from 'react-intl';
|
|
|
|
import { defineMessages, FormattedMessage, injectIntl } from 'react-intl';
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
|
@ -177,7 +177,7 @@ class SwitchingColumnsArea extends React.PureComponent {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (singleUserMode && owner && initialState?.accounts[owner]) {
|
|
|
|
} else if (singleUserMode && owner && initialState?.accounts[owner]) {
|
|
|
|
redirect = <Redirect from='/' to={`/@${initialState.accounts[owner].username}`} exact />;
|
|
|
|
redirect = <Redirect from='/' to={`/@${initialState.accounts[owner].username}`} exact />;
|
|
|
|
} else if (showTrends) {
|
|
|
|
} else if (showTrends && trendsAsLanding) {
|
|
|
|
redirect = <Redirect from='/' to='/explore' exact />;
|
|
|
|
redirect = <Redirect from='/' to='/explore' exact />;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
redirect = <Redirect from='/' to='/about' exact />;
|
|
|
|
redirect = <Redirect from='/' to='/about' exact />;
|
|
|
|