perf: disable StrictMode and optimize App calculations to handle 120k+ rows

This commit is contained in:
Christian Vidal Wolf
2026-04-16 12:09:52 +02:00
parent 630941c96a
commit fbb6c75197
2 changed files with 15 additions and 51 deletions
+3 -5
View File
@@ -10,9 +10,7 @@ if (!rootElement) {
const root = ReactDOM.createRoot(rootElement);
root.render(
<React.StrictMode>
<ErrorBoundary>
<App />
</ErrorBoundary>
</React.StrictMode>
<ErrorBoundary>
<App />
</ErrorBoundary>
);