From 2f88aae6ce82863477e1f253674ec4ef914117be Mon Sep 17 00:00:00 2001 From: Mehak Nasir <67791278+mehaknasir@users.noreply.github.com> Date: Tue, 31 May 2022 23:20:33 +0500 Subject: [PATCH] Temp PR to check build issue. (#177) * fix: mathjax syntax support extended * fix: adding mathjax support * temp: removed mathjax contex to check build issue --- src/index.jsx | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/src/index.jsx b/src/index.jsx index 17d28ca8..0b209ef2 100755 --- a/src/index.jsx +++ b/src/index.jsx @@ -4,8 +4,6 @@ import 'regenerator-runtime/runtime'; import React from 'react'; import ReactDOM from 'react-dom'; -import { MathJaxContext } from 'better-react-mathjax'; - import { APP_INIT_ERROR, APP_READY, initialize, subscribe, } from '@edx/frontend-platform'; @@ -13,7 +11,6 @@ import { AppProvider, ErrorPage } from '@edx/frontend-platform/react'; import { DiscussionsHome } from './discussions'; import appMessages from './i18n'; -import configMaths from './mathjax-config'; import store from './store'; import './assets/favicon.ico'; @@ -21,11 +18,9 @@ import './index.scss'; subscribe(APP_READY, () => { ReactDOM.render( - - - - - , + + + , document.getElementById('root'), ); });