diff --git a/app/core/utils.js b/app/core/utils.js index c9bfe09a35..217f311898 100644 --- a/app/core/utils.js +++ b/app/core/utils.js @@ -69,7 +69,7 @@ utils.getIn = (obj, props, notFound) => { utils.isSupportedBrowser = () => { var userAgent = navigator.userAgent.toLowerCase(); - return (userAgent.indexOf('chrome') > -1 && userAgent.indexOf('opr') === -1 && userAgent.indexOf('mobi') === -1); + return (userAgent.indexOf('chrome') > -1 && userAgent.indexOf('opr') === -1 && userAgent.indexOf('mobi') === -1 && userAgent.indexOf('firefox') === -1); }; utils.isMobile = () => {