hotfix build errors
Build Images and Deploy / Update-PROD-Stack (push) Successful in 1m27s

This commit is contained in:
2026-03-19 15:03:26 -04:00
parent 40a1034000
commit 5e9421801e
+1 -1
View File
@@ -297,7 +297,7 @@ export default async function StocksPage({ searchParams }: PageProps) {
<p className={`text-sm ${pnlColor(change)}`}>
{change > 0 ? '+' : ''}{formatCurrency(change)}
</p>
<p className={`text-xs ${pnlColor(changePct)}`}>
<p className={`text-xs ${pnlColor(changePct ?? 0)}`}>
{changePct! > 0 ? '+' : ''}{changePct!.toFixed(2)}%
</p>
</div>