refactor: simplify import paths

This commit is contained in:
Carlos Valente
2025-02-15 14:01:24 +01:00
committed by Carlos Valente
parent 70558c5104
commit c65761448d
6 changed files with 9 additions and 7 deletions
@@ -1,6 +1,7 @@
import { useEffect, useState } from 'react';
import { throttle } from '../../common/utils/throttle';
import { throttle } from '../utils/throttle';
export const useFadeOutOnInactivity = () => {
const [isMouseMoved, setIsMouseMoved] = useState(false);