Skip to content

Commit

Permalink
chore: restored react strict mode
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-eof committed Apr 27, 2023
1 parent 3f3c06e commit 01d6fc9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ import { BrowserRouter } from 'react-router-dom';
import InterceptorInit from './components/InterceptorInit';

export const App = () => (
// <React.StrictMode>
<ChakraProvider theme={theme}>
<BrowserRouter>
<InterceptorInit />
<Main />
</BrowserRouter>
</ChakraProvider>
// </React.StrictMode>
<React.StrictMode>
<ChakraProvider theme={theme}>
<BrowserRouter>
<InterceptorInit />
<Main />
</BrowserRouter>
</ChakraProvider>
</React.StrictMode>
);

0 comments on commit 01d6fc9

Please sign in to comment.