We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13e9227 commit 0b7c608Copy full SHA for 0b7c608
src/app/page.tsx
@@ -1726,8 +1726,8 @@ export default function Dashboard() {
1726
{/* Top Recommendations */}
1727
{costAnalysisData.recommendations && costAnalysisData.recommendations.length > 0 && (
1728
<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) => (
+ <p className="text-xs text-gray-600 font-semibold">Recommendations</p>
+ {costAnalysisData.recommendations.map((rec, idx) => (
1731
<div key={idx} className="bg-amber-50 rounded-lg p-2.5 border border-amber-100">
1732
<div className="flex items-start justify-between gap-2">
1733
<div className="flex-1">
0 commit comments