Skip to content

Commit 3461f1a

Browse files
bjarnefCopilot
andauthored
Update packages/uui-base/lib/utils/drag.ts
Co-authored-by: Copilot <[email protected]>
1 parent 6e93964 commit 3461f1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/uui-base/lib/utils/drag.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const drag = (
2626
if ('TouchEvent' in window && event instanceof TouchEvent) {
2727
pointerEvent = event.touches[0];
2828
} else if (event instanceof MouseEvent) {
29-
// Some browsers seems to return PointerEvent instead of MouseEvent for click event.
29+
// Some browsers seem to return PointerEvent instead of MouseEvent for click event.
3030
// We can use MouseEvent as PointerEvent inherits from MouseEvent.
3131
pointerEvent = event;
3232
} else {

0 commit comments

Comments
 (0)