Skip to content

Commit

Permalink
Refactor: Delete strict mode
Browse files Browse the repository at this point in the history
  • Loading branch information
swgvenghy committed Jul 22, 2024
1 parent 44fd7f2 commit 715aec7
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ import reportWebVitals from './reportWebVitals';
import './index.css';

const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement);
root.render(
<React.StrictMode>
<App />
</React.StrictMode>,
);
root.render(<App />);

// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
Expand Down

0 comments on commit 715aec7

Please sign in to comment.