diff options
author | Anderson Shindy Oki <[email protected]> | 2024-06-08 09:49:40 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2024-06-07 20:49:40 -0400 |
commit | bcd8257fda44678e53e184eea8ab3a97709e1d02 (patch) | |
tree | a0c84b3a1ad4901d6728dd609b6383af5c19a8cc /frontend/src/components/TextPopover.tsx | |
parent | be8f2d6d183e5206f932be1113e0da7db2a2277a (diff) | |
download | bazarr-bcd8257fda44678e53e184eea8ab3a97709e1d02.tar.gz bazarr-bcd8257fda44678e53e184eea8ab3a97709e1d02.zip |
no log: Apply style linter (#2516)
Diffstat (limited to 'frontend/src/components/TextPopover.tsx')
-rw-r--r-- | frontend/src/components/TextPopover.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/TextPopover.tsx b/frontend/src/components/TextPopover.tsx index 8fda5913e..b72654109 100644 --- a/frontend/src/components/TextPopover.tsx +++ b/frontend/src/components/TextPopover.tsx @@ -1,7 +1,7 @@ +import { FunctionComponent, ReactElement } from "react"; import { Tooltip, TooltipProps } from "@mantine/core"; import { useHover } from "@mantine/hooks"; import { isNull, isUndefined } from "lodash"; -import { FunctionComponent, ReactElement } from "react"; interface TextPopoverProps { children: ReactElement; |