comment keycloak

This commit is contained in:
mattyl006 2022-09-22 13:35:09 +02:00
parent d43701b08f
commit 20da77fa73

View File

@ -3,8 +3,8 @@ import ReactDOM from 'react-dom/client';
import './index.css'; import './index.css';
import './normalize.css'; import './normalize.css';
import App from './App'; import App from './App';
import KeyCloakService from './services/KeyCloakService'; // import KeyCloakService from './services/KeyCloakService';
import HttpService from './services/HttpService'; // import HttpService from './services/HttpService';
const root = ReactDOM.createRoot(document.getElementById('root')); const root = ReactDOM.createRoot(document.getElementById('root'));
@ -14,5 +14,7 @@ const renderApp = () => root.render(
</React.StrictMode> </React.StrictMode>
); );
KeyCloakService.initKeycloak(renderApp); // KeyCloakService.initKeycloak(renderApp);
HttpService.configure(); // HttpService.configure();
renderApp();