diff --git a/react/features/base/util/componentInterceptor.js b/react/features/base/util/componentInterceptor.js index 4ca94d53f..a3550c4e0 100644 --- a/react/features/base/util/componentInterceptor.js +++ b/react/features/base/util/componentInterceptor.js @@ -1,8 +1,7 @@ import { Platform } from '../react'; import { - MobileBrowserPage, - UnsupportedBrowserPage + MobileBrowserPage } from '../../unsupported-browser'; /** @@ -33,19 +32,6 @@ const RULES = [ if ((OS === 'android' || OS === 'ios') && !mobileBrowserPageIsShown) { return MobileBrowserPage; } - }, - - /** - * This rule describes case when user opens application using web browser - * that doesn't support WebRTC or Temasys plugin should be installed. - * - * @returns {UnsupportedBrowserPage|void} If the rule is satisfied - * then we should intercept existing component by UnsupportedBrowserPage. - */ - () => { - if (true) { - return UnsupportedBrowserPage; - } } ];