Skip to content

Commit

Permalink
try without mocks
Browse files Browse the repository at this point in the history
  • Loading branch information
alan2207 committed Apr 28, 2024
1 parent e685bf3 commit 461de9c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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(
<React.StrictMode>
<App />
</React.StrictMode>
);
});
// initMocks().then(() => {
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
// });

0 comments on commit 461de9c

Please sign in to comment.