chore: upgrade node dependencies

This commit is contained in:
Carlos Valente
2024-07-10 14:16:35 +02:00
committed by Carlos Valente
parent 917b182e39
commit 4758bc84b5
14 changed files with 6669 additions and 5405 deletions
@@ -19,7 +19,7 @@ export default function useLongPress(callback: () => void, options: LongPressOpt
const { threshold = 400, onStart, onFinish, onCancel } = options;
const isLongPressActive = useRef(false);
const isPressed = useRef(false);
const timerId = useRef<NodeJS.Timer>();
const timerId = useRef<NodeJS.Timeout>();
return useMemo(() => {
const start = (event: SyntheticEvent) => {