Browse Source

Use const instead of let for constant (tootsuite pr #6106)

closed-social-glitch-2
cwm 6 years ago
parent
commit
b535f24fe5
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/javascript/flavours/glitch/features/getting_started/index.js

+ 2
- 2
app/javascript/flavours/glitch/features/getting_started/index.js View File

@ -79,8 +79,8 @@ export default class GettingStarted extends ImmutablePureComponent {
render () {
const { intl, myAccount, columns, multiColumn, lists } = this.props;
let navItems = [];
let listItems = [];
const navItems = [];
const listItems = [];
if (multiColumn) {
if (!columns.find(item => item.get('id') === 'HOME')) {

Loading…
Cancel
Save