fix: remove unused variable

This commit is contained in:
Fernando Zanutto 2024-04-23 19:28:32 -03:00
parent 981b7266a3
commit 9a73be47c4

View File

@ -1,4 +1,4 @@
import { useEffect, useId, useRef, useState } from "react";
import { useEffect, useRef, useState } from "react";
import { createPortal } from "react-dom";
import { XIcon } from "@primer/octicons-react";
@ -24,7 +24,6 @@ export function Modal({
const [isClosing, setIsClosing] = useState(false);
const dispatch = useAppDispatch();
const modalContentRef = useRef<HTMLDivElement | null>(null);
const componentId = useId();
const handleCloseClick = () => {
setIsClosing(true);