From 461de9ccceed992f72341e44a76bc824e4a6e9df Mon Sep 17 00:00:00 2001 From: Alan Alickovic Date: Sun, 28 Apr 2024 21:41:45 +0200 Subject: [PATCH] try without mocks --- src/index.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index 3abcf35b..a4b68657 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3,14 +3,14 @@ import { createRoot } from 'react-dom/client'; import './index.css'; import App from './App'; -import { initMocks } from './test/server'; +// import { initMocks } from './test/server'; const root = createRoot(document.getElementById('root') as HTMLElement); -initMocks().then(() => { - root.render( - - - - ); -}); +// initMocks().then(() => { +root.render( + + + +); +// });