Skip to content

Commit fde68d5

Browse files
Wojciech KrysiakWojciech Krysiak
authored andcommitted
style: fix linter issues
1 parent 54a2960 commit fde68d5

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

src/atoms/table/table.stories.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import React from 'react'
2-
import { withKnobs, text, object } from '../../../storybook/node_modules/@storybook/addon-knobs'
2+
import { withKnobs } from '../../../storybook/node_modules/@storybook/addon-knobs'
33

44
import {
5-
Box,
65
Table,
76
TableCaption,
87
TableRow,
@@ -12,7 +11,6 @@ import {
1211
Button,
1312
Icon,
1413
CheckBox,
15-
Text,
1614
Link,
1715
CardTitle,
1816
} from '../..'

src/atoms/tooltip.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ const Tooltip: React.FC<PropsWithChildren<Props>> = (props) => {
5252
})
5353
}
5454

55-
const onEnter = (event) => {
55+
const onEnter = () => {
5656
setIsVisible(true)
5757
}
5858

59-
const onLeave = (event) => {
59+
const onLeave = () => {
6060
setIsVisible(false)
6161
}
6262

src/molecules/drop-down/drop-down.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { BoxProps } from '@admin-bro/design-system'
21
/* eslint-disable default-case */
32
import React, { useEffect, useRef, useState } from 'react'
43
import styled from 'styled-components'
4+
import { BoxProps } from '../..'
55

66
const StyledDropDown = styled.div`
77
position: relative;

0 commit comments

Comments
 (0)