From 1e1b837cf3519d656b7d81ae7570a5a0dc59f7a5 Mon Sep 17 00:00:00 2001 From: Senofy <63175905+Senofy@users.noreply.github.com> Date: Thu, 12 Mar 2026 12:59:50 -0500 Subject: [PATCH] Show daily target below profit target in accounts table Displays the server-computed dailyTarget.amount as a secondary line "$X today" under the profit target in the Target column. Co-Authored-By: Claude Sonnet 4.6 --- app/page.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/page.tsx b/app/page.tsx index d64d707..1d7f9b9 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -134,7 +134,12 @@ function AccountRow({ account, firm, hideDead, privacy }: { account: AccountStat {account.daysTraded} / {cfg?.minTradingDays ?? '—'} - ${cfg?.profitTarget?.toLocaleString() ?? '—'} +
+ ${cfg?.profitTarget?.toLocaleString() ?? '—'} + {account.dailyTarget && ( + ${fmt(account.dailyTarget.amount)} today + )} +