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 a8dbaf6 commit 9349d12Copy full SHA for 9349d12
packages/@react-aria/utils/src/isVirtualEvent.ts
@@ -25,7 +25,7 @@ import {isAndroid} from './platform';
25
26
export function isVirtualClick(event: MouseEvent | PointerEvent): boolean {
27
// JAWS/NVDA with Firefox.
28
- if ((event as any).mozInputSource === 0 && event.isTrusted) {
+ if ((event as PointerEvent).pointerType === '' && event.isTrusted) {
29
return true;
30
}
31
0 commit comments