From ba51a8aa4096dab90546e3f8853351ab10d89dcd Mon Sep 17 00:00:00 2001 From: polsevev Date: Thu, 31 Aug 2023 15:19:15 +0200 Subject: [PATCH] Fix unused ref --- polsevev.dev.frontend/src/components/NavigationMenu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polsevev.dev.frontend/src/components/NavigationMenu.tsx b/polsevev.dev.frontend/src/components/NavigationMenu.tsx index 4a49f5f..e392d8c 100644 --- a/polsevev.dev.frontend/src/components/NavigationMenu.tsx +++ b/polsevev.dev.frontend/src/components/NavigationMenu.tsx @@ -1,4 +1,4 @@ -import { FC, useEffect, useRef, useState } from "react"; +import { FC, useEffect, useState } from "react"; import { NavItem, SideBarBox } from "../styles/TopBarStyle"; import { useNavigate } from "react-router"; import useComponentVisible from "../Hooks/useComponentVisible";