We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61b02be commit 59ff319Copy full SHA for 59ff319
packages/design-system/src/components/primitives/numeric-gesture-control.ts
@@ -214,6 +214,7 @@ export const numericScrubControl = (
214
if (!(event instanceof PointerEvent)) {
215
return;
216
}
217
+
218
const { type } = event;
219
220
switch (type) {
@@ -404,8 +405,6 @@ export const numericScrubControl = (
404
405
406
const requestPointerLockSafe = async (targetNode: HTMLElement | SVGElement) => {
407
try {
- // await targetNode.requestPointerLock();
408
-
409
return await targetNode.requestPointerLock({
410
unadjustedMovement: true,
411
});
0 commit comments