From d70ca487288ac44a115b26228240e915d766a971 Mon Sep 17 00:00:00 2001 From: Hristo Terezov Date: Fri, 8 Jun 2018 16:46:58 -0500 Subject: [PATCH] fix(aot): JS error (#3118) The following import chain is braking the bundle AOT->base/toolbox->base/styles->base/react->base/i18n --- react/features/base/styles/functions.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/react/features/base/styles/functions.js b/react/features/base/styles/functions.js index 9b29aa5768..c57d300a52 100644 --- a/react/features/base/styles/functions.js +++ b/react/features/base/styles/functions.js @@ -1,6 +1,5 @@ /* @flow */ - -import { Platform } from '../react'; +import Platform from '../react/Platform'; import { ColorPalette } from './components';