From 03415086da92e7ab9c64b825a762314a9b6af816 Mon Sep 17 00:00:00 2001 From: chrisgarrity Date: Fri, 26 Oct 2018 21:06:50 -0400 Subject: [PATCH] Restore IntlProvider for Internet Explorer GUI includes its own Intl provider (react-intl supports nested intl providers) that works within the www intl provider. Restore the app-state provider intl provider and app-stat-hoc for the stand-alone gui so that IE can function enough to put up the unsupported browser. --- src/lib/app-state-hoc.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lib/app-state-hoc.jsx b/src/lib/app-state-hoc.jsx index 3c9eb9266d1..93d97180ef3 100644 --- a/src/lib/app-state-hoc.jsx +++ b/src/lib/app-state-hoc.jsx @@ -2,6 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import {Provider} from 'react-redux'; import {createStore, combineReducers, compose} from 'redux'; +import ConnectedIntlProvider from './connected-intl-provider.jsx'; import localesReducer, {initLocale, localesInitialState} from '../reducers/locales'; @@ -107,7 +108,9 @@ const AppStateHOC = function (WrappedComponent, localesOnly) { } = this.props; return ( - + + + ); }