Skip to content

Commit

Permalink
remove strict mode since it doesn't play nice with antd: ant-design/a…
Browse files Browse the repository at this point in the history
  • Loading branch information
cszczepaniak committed Apr 14, 2020
1 parent 92a4c99 commit 797f485
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions client/src/index.js
Expand Up @@ -2,9 +2,4 @@ import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';

ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
ReactDOM.render(<App />, document.getElementById('root'));

0 comments on commit 797f485

Please sign in to comment.