Skip to content

Commit

Permalink
UPDATE : remove react strict mode
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamtala-dev committed Apr 26, 2024
1 parent b994857 commit cdb8ba1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import "./index.css";
import ErrorBoundary from "./components/errorBoundary/ErrorBoundary.jsx";

ReactDOM.createRoot(document.getElementById("root")).render(
<React.StrictMode>
<ErrorBoundary>
<App />
</ErrorBoundary>
</React.StrictMode>
// <React.StrictMode>
<ErrorBoundary>
<App />
</ErrorBoundary>
// </React.StrictMode>
);

0 comments on commit cdb8ba1

Please sign in to comment.