Files
trading_bot_v3/app/page.js
mindesbunister 5bf25ca3ee Fix Overview page runtime errors
- Replace complex page.js with simple version that delegates to StatusOverview
- Eliminates hydration errors from Date.now() usage
- Prevents undefined property access errors (aiAnalytics.overview.totalLearningRecords)
- Overview page now loads correctly without 'Something went wrong!' error
- All data fetching and error handling properly managed by StatusOverview component
2025-07-26 11:32:24 +02:00

13 lines
206 B
JavaScript

'use client'
import StatusOverview from '../components/StatusOverview.js'
export default function HomePage() {
return (
<div>
{/* Status Overview */}
<StatusOverview />
</div>
)
}