Skip to content

Commit 0b7c608

Browse files
theo-learnerclaude
andcommitted
fix: show all cost analysis recommendations instead of top 2
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 13e9227 commit 0b7c608

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1726,8 +1726,8 @@ export default function Dashboard() {
17261726
{/* Top Recommendations */}
17271727
{costAnalysisData.recommendations && costAnalysisData.recommendations.length > 0 && (
17281728
<div className="space-y-2">
1729-
<p className="text-xs text-gray-600 font-semibold">Top Recommendations</p>
1730-
{costAnalysisData.recommendations.slice(0, 2).map((rec, idx) => (
1729+
<p className="text-xs text-gray-600 font-semibold">Recommendations</p>
1730+
{costAnalysisData.recommendations.map((rec, idx) => (
17311731
<div key={idx} className="bg-amber-50 rounded-lg p-2.5 border border-amber-100">
17321732
<div className="flex items-start justify-between gap-2">
17331733
<div className="flex-1">

0 commit comments

Comments
 (0)