mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
chore(ci): upgrade deps (#1868)
This commit is contained in:
@@ -27,5 +27,5 @@ export function useDoubleTapGesture(
|
||||
if (!container || disabled) return;
|
||||
|
||||
return createDoubleTapGesture(container, (event) => onActivateRef.current(event), { pointer, region });
|
||||
}, [container, disabled, pointer, region, onActivateRef]);
|
||||
}, [container, disabled, pointer, region]);
|
||||
}
|
||||
|
||||
@@ -24,5 +24,5 @@ export function useTapGesture(onActivate: (event: PointerEvent) => void, options
|
||||
if (!container || disabled) return;
|
||||
|
||||
return createTapGesture(container, (event) => onActivateRef.current(event), { pointer, region });
|
||||
}, [container, disabled, pointer, region, onActivateRef]);
|
||||
}, [container, disabled, pointer, region]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user