Skip to content

Commit 5d800af

Browse files
committed
lint fix
1 parent b56699d commit 5d800af

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/libs/ui/lib/components/tabs-navbar/TabsNavbarItem.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ interface TabsNavbarItemProps<T> {
3232
}
3333

3434
export const TabsNavbarItem: FC<TabsNavbarItemProps<any> & RefAttributes<HTMLElement>>
35-
= forwardRef<HTMLElement, TabsNavbarItemProps<any>>(<T, >(props: TabsNavbarItemProps<T>, ref: ForwardedRef<HTMLElement>) => {
35+
= forwardRef<HTMLElement, TabsNavbarItemProps<any>>(
36+
<T, >(props: TabsNavbarItemProps<T>, ref: ForwardedRef<HTMLElement>
37+
) => {
3638
const [openDropdown, setOpenDropdown] = useState(false)
3739
const { width: screenWidth }: WindowSize = useWindowSize()
3840
const isMobile = useMemo(() => screenWidth < 745, [screenWidth])

0 commit comments

Comments
 (0)