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.
2 parents c777822 + 6f5e307 commit 1b24e47Copy full SHA for 1b24e47
src/components/helpers/selectors.js
@@ -15,11 +15,7 @@ const isMobileAndTabletType = () => {
15
};
16
17
const isEdgeChromiumType = () => {
18
- if (os.name === OS_TYPES.WINDOWS && os.version === '10') {
19
- return typeof ua === 'string' && ua.indexOf('Edg/') !== -1;
20
- }
21
-
22
- return false;
+ return typeof ua === 'string' && ua.indexOf('Edg/') !== -1;
23
24
25
const isSmartTVType = () => device.type === DEVICE_TYPES.SMART_TV;
0 commit comments