rerun complete

This commit is contained in:
Boki 2025-07-04 18:14:44 -04:00
parent 11c6c19628
commit d15e542f20
17 changed files with 4694 additions and 146 deletions

View file

@ -1,8 +1,12 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import { App } from './app';
import { setupChartErrorHandler } from './utils/chartErrorHandler';
import './index.css';
// Set up error handler for chart disposal errors
setupChartErrorHandler();
const rootElement = document.getElementById('root');
if (!rootElement) {
throw new Error('Root element not found');