Turn off RTL support for dev environment.

This commit is contained in:
Douglas Hall
2019-04-03 12:07:59 -04:00
parent 4f8e96e710
commit 3e44786332

View File

@@ -15,7 +15,9 @@ import App from './components/App';
if (apiClient.ensurePublicOrAuthencationAndCookies(window.location.pathname)) {
const { store, history } = configureStore();
handleRtl();
if (process.env.NODE_ENV === 'production') {
handleRtl();
}
ReactDOM.render(<App store={store} history={history} />, document.getElementById('root'));