From 96e47a21591526601a09776e028e12143a6a2602 Mon Sep 17 00:00:00 2001 From: Lachlan Kermode Date: Tue, 2 Jun 2020 14:23:01 +0200 Subject: [PATCH] no error message for opera --- src/index.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.jsx b/src/index.jsx index 0147cd3..faf81e8 100644 --- a/src/index.jsx +++ b/src/index.jsx @@ -29,7 +29,7 @@ const isChrome = !!window.chrome && !!window.chrome.webstore // Blink engine detection const isBlink = (isChrome || isOpera) && !!window.CSS -if (isEdge || isIE || isOpera) { - alert('Please view this website in Firefox or Chrome for best viewing. It is untested in your browser.') +if (isEdge || isIE) { + alert('Please view this website in Opera for best viewing. It is untested in your browser.') } /* eslint-enable */