diff --git a/src/App.tsx b/src/App.tsx index eadb406..5921c17 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -7,26 +7,20 @@ import { UserProvider } from './contexts/UserContext'; import AppRoutes from './AppRoutes'; import React from 'react'; -// Wrap the entire app in a memo to prevent unnecessary re-renders const App = React.memo(() => ( - - - - - - - + + + )); -// Add display name for better debugging App.displayName = import.meta.env.VITE_APP_NAME; -export default App; \ No newline at end of file +export default App;