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

lolsob-rspec
cwm 2018-01-09 10:35:36 -06:00
parent 90c35fe17a
commit 3ba78c7bda
1 changed files with 2 additions and 2 deletions

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')) {