mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 23:58:06 +01:00
Use const instead of let for constant (tootsuite pr #6106)
This commit is contained in:
parent
0d4dcb5fb2
commit
b535f24fe5
1 changed files with 2 additions and 2 deletions
|
@ -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…
Reference in a new issue