Skip to content

Commit

Permalink
FEAT : remove STRICT MODE for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
luckylooky2 committed May 24, 2023
1 parent a71c1ff commit ebf477b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions frontend/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ const root = ReactDOM.createRoot(
document.getElementById("root") as HTMLElement
);
root.render(
<React.StrictMode>
<Provider store={store}>
<App />
</Provider>
</React.StrictMode>
<Provider store={store}>
<App />
</Provider>
);

// If you want to start measuring performance in your app, pass a function
Expand Down

0 comments on commit ebf477b

Please sign in to comment.