+
Error loading predictions
+
+ );
+ }
+
+ if (!predictions?.length) {
+ return null;
+ }
+
+ const chartData = predictions.map(pred => ({
+ date: new Date(pred.date).toLocaleDateString('en-US', { weekday: 'short' }),
+ predicted: pred.predictedPower,
+ confidence: pred.confidence * 100
+ }));
+
+ return (
+