You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have verified that I use latest version of all @mantine/* packages
What version of @mantine/* packages do you have in package.json?
7.10.0
What package has an issue?
@mantine/hooks
What framework do you use?
Next.js
In which browsers you can reproduce the issue?
Other, I will specify in the bug description
Describe the bug
Found out that EyeDropper hook does not work correctly in Opera browser. Despite the fact that there is EyeDropper key in window object and under the hood Opera uses Chromium. There will be no errors in the console, because there is a key in window and there are methods.
If possible, include a link to a codesandbox with a minimal reproduction
No response
Possible fix
As a solution I suggest not to show this dropper in Opera browser by adding a check:
function isOpera() {
return navigator.userAgent.includes('OPR');
}
Self-service
I would be willing to implement a fix for this issue
The text was updated successfully, but these errors were encountered:
Dependencies check up
What version of @mantine/* packages do you have in package.json?
7.10.0
What package has an issue?
@mantine/hooks
What framework do you use?
Next.js
In which browsers you can reproduce the issue?
Other, I will specify in the bug description
Describe the bug
Found out that EyeDropper hook does not work correctly in Opera browser. Despite the fact that there is EyeDropper key in window object and under the hood Opera uses Chromium. There will be no errors in the console, because there is a key in window and there are methods.
If possible, include a link to a codesandbox with a minimal reproduction
No response
Possible fix
As a solution I suggest not to show this dropper in Opera browser by adding a check:
Self-service
The text was updated successfully, but these errors were encountered: