diff --git a/src/app/positions/page.tsx b/src/app/positions/page.tsx index dc19305..7bc0c13 100644 --- a/src/app/positions/page.tsx +++ b/src/app/positions/page.tsx @@ -78,13 +78,13 @@ export default async function PositionsPage() { ) : (
{/* Header row */} -
+
Hashtag Shares - Avg buy - Current - Cost basis - Value + Avg buy + Current + Cost basis + Value P&L
@@ -102,11 +102,13 @@ export default async function PositionsPage() { return (
- {/* Hashtag + type + sparkline */} + {/* Hashtag + type badge (+ sparkline on desktop) */}
- +
+ +
{formatNumber(pos.shares)} - {formatCurrency(pos.avgBuyPrice)} - {formatCurrency(pos.hashtag.currentPrice)} - {formatCurrency(costBasis)} - {formatCurrency(currentValue)} + {formatCurrency(pos.avgBuyPrice)} + {formatCurrency(pos.hashtag.currentPrice)} + {formatCurrency(costBasis)} + {formatCurrency(currentValue)}

{formatPnl(pnl)}