Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
niloofar-deriv committed Jun 7, 2024
1 parent bf244b4 commit c8891ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AppLayout/Submenu /index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const Submenu = ({
className,
isOpen,
}: PropsWithChildren<TSubmenu>) => {
const timerRef = useRef<NodeJS.Timeout | null>(null);
const timerRef = useRef<ReturnType<typeof setInterval> | null>(null);
const [isMounted, setIsMounted] = useState(isOpen);
const [isClosing, setIsClosing] = useState(false);

Expand Down

0 comments on commit c8891ab

Please sign in to comment.