1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-03 08:45:40 +02:00

Fixing eslint errors

This commit is contained in:
Jesús Espino 2021-04-08 10:42:16 +02:00
parent 962f216426
commit 155af1f4b7
4 changed files with 4 additions and 5 deletions

View File

@ -2,6 +2,7 @@
// See LICENSE.txt for license information.
import React from 'react'
import {useDrop} from 'react-dnd'
import {Card} from '../../blocks/card'
type Props = {

View File

@ -1,11 +1,10 @@
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
/* eslint-disable max-lines */
import React, {useRef, useState} from 'react'
import React from 'react'
import {IntlShape} from 'react-intl'
import {useDrop} from 'react-dnd'
import {IPropertyOption} from '../../blocks/board'
import mutator from '../../mutator'
import {BoardTree, BoardTreeGroup} from '../../viewModel/boardTree'
import Button from '../../widgets/buttons/button'

View File

@ -1,6 +1,6 @@
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {useState} from 'react'
import React from 'react'
import {FormattedMessage} from 'react-intl'
import {useDrop, useDragLayer} from 'react-dnd'

View File

@ -1,7 +1,6 @@
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import React, {useState, useRef} from 'react'
import {useDrop, useDrag} from 'react-dnd'
import React from 'react'
import {IPropertyTemplate} from '../../blocks/board'
import {Constants} from '../../constants'