diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx
index 3227e7a..a0a2ed1 100644
--- a/frontend/src/App.jsx
+++ b/frontend/src/App.jsx
@@ -244,7 +244,7 @@ function PositionsCard({ positions }) {
${(p.amount_usd || 0).toFixed(0)} |
{(p.entry_spread || 0).toFixed(4)}% |
{p.current_spread != null ? p.current_spread.toFixed(4) + '%' : '-'} |
- {p.pnl_est != null ? p.pnl_est.toFixed(4) + '%' : '-'} |
+ {p.pnl_est != null ? '$' + p.pnl_est.toFixed(4) : '-'} |
{p.scales || 0} |
{p.duration || '-'} |