Skip to content

Commit

Permalink
Remove zoom- and grab prefixing in cursor property
Browse files Browse the repository at this point in the history
  • Loading branch information
emmatown committed Jan 13, 2025
1 parent 2683a39 commit 24a5b10
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions packages/cache/src/prefixer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,7 @@ function prefix(value: string, length: number): string {
// cursor
case 6187:
return (
replace(
replace(
replace(value, /(zoom-|grab)/, WEBKIT + '$1'),
/(image-set)/,
WEBKIT + '$1'
),
value,
''
) + value
replace(replace(value, /(image-set)/, WEBKIT + '$1'), value, '') + value
)
}

Expand Down

0 comments on commit 24a5b10

Please sign in to comment.