diff --git a/app/javascript/mastodon/features/getting_started/index.js b/app/javascript/mastodon/features/getting_started/index.js
index 2f02f245f8..3c1619c240 100644
--- a/app/javascript/mastodon/features/getting_started/index.js
+++ b/app/javascript/mastodon/features/getting_started/index.js
@@ -48,7 +48,7 @@ export default class GettingStarted extends ImmutablePureComponent {
render () {
const { intl, myAccount, columns, multiColumn } = this.props;
- let navItems = [];
+ const navItems = [];
if (multiColumn) {
if (!columns.find(item => item.get('id') === 'HOME')) {
@@ -68,20 +68,20 @@ export default class GettingStarted extends ImmutablePureComponent {
}
}
- navItems = navItems.concat([
+ navItems.push(
,
,
- ,
- ]);
+
+ );
if (myAccount.get('locked')) {
navItems.push();
}
- navItems = navItems.concat([
+ navItems.push(
,
- ,
- ]);
+
+ );
if (multiColumn) {
navItems.push();