We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77efe49 commit 37064bfCopy full SHA for 37064bf
1 file changed
app/javascript/mastodon/features/getting_started/index.js
@@ -76,9 +76,9 @@ class GettingStarted extends ImmutablePureComponent {
76
};
77
78
componentDidMount () {
79
- const { myAccount, fetchFollowRequests } = this.props;
+ const { myAccount, fetchFollowRequests, multiColumn } = this.props;
80
81
- if (window.innerWidth >= NAVIGATION_PANEL_BREAKPOINT) {
+ if (!multiColumn && window.innerWidth >= NAVIGATION_PANEL_BREAKPOINT) {
82
this.context.router.history.replace('/timelines/home');
83
return;
84
}
0 commit comments