From 2aea24ffad356041935053b56174eaef7d582215 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Fri, 6 Sep 2019 14:59:12 +0200 Subject: [PATCH] dial-in-info: fix bundle bloat The direct import sidesteps many chained-effect imports, halving the bundle size. --- .../invite/components/dial-in-info-page/DialInInfoApp.web.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/invite/components/dial-in-info-page/DialInInfoApp.web.js b/react/features/invite/components/dial-in-info-page/DialInInfoApp.web.js index 850fdc583..bbb2cae67 100644 --- a/react/features/invite/components/dial-in-info-page/DialInInfoApp.web.js +++ b/react/features/invite/components/dial-in-info-page/DialInInfoApp.web.js @@ -8,7 +8,7 @@ import { i18next } from '../../../base/i18n'; import { DialInSummary } from '../dial-in-summary'; import NoRoomError from './NoRoomError'; -import { Platform } from '../../../base/react'; +import Platform from '../../../base/react/Platform.web'; document.addEventListener('DOMContentLoaded', () => { const { room } = parseURLParams(window.location, true, 'search');