fix(dial-in-info): Qiuck fix of JitsiMeetJS undefined error.

This commit is contained in:
hristoterezov
2018-05-17 14:24:33 -05:00
committed by Любомир Маринов
parent 284d09eae7
commit add89e2488

View File

@@ -1,6 +1,8 @@
/* @flow */
import { SET_CONFIG } from '../config';
// FIXME: Using '../config/actionTypes' instead of '../config' is a quick fix
// for the dial-in info page. Importing '../config' results in JitsiMeetJS
// undefined error (/base/config imports /app which import /lib-jitsi-meet/).
import { SET_CONFIG } from '../config/actionTypes';
import { MiddlewareRegistry } from '../redux';
declare var APP: Object;