diff --git a/app/application/route.js b/app/application/route.js
index 99eaf1cc3..381f211a7 100644
--- a/app/application/route.js
+++ b/app/application/route.js
@@ -26,7 +26,8 @@ export default Route.extend({
let agent = window.navigator.userAgent.toLowerCase();
- if ( agent.indexOf('msie ') >= 0 || agent.indexOf('trident/') >= 0 ) {
+ // Show the we don't support internet explorer or edge browsers (only edge html based browsers the mobile and chromium based browsers should be okay).
+ if ( agent.indexOf('msie ') >= 0 || agent.indexOf('trident/') >= 0 || agent.indexOf('edge/') >= 0) {
this.replaceWith('ie');
return;
diff --git a/app/ie/template.hbs b/app/ie/template.hbs
index dcc386951..f8e5b02e7 100644
--- a/app/ie/template.hbs
+++ b/app/ie/template.hbs
@@ -2,5 +2,5 @@