From 8d9a9a5ea9d025c9c972558f42342926db80a008 Mon Sep 17 00:00:00 2001 From: Brandon Li Date: Sun, 22 Mar 2026 17:55:20 -0500 Subject: [PATCH] Rename Random to Auto in UI and always show + on last stage - Display "Auto" instead of "Random" for symbol/action selectors - Last withdrawal stage always shows "+" suffix (even with one stage) Co-Authored-By: Claude Opus 4.6 (1M context) --- app/firms/[id]/settings/page.tsx | 2 +- app/page.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/firms/[id]/settings/page.tsx b/app/firms/[id]/settings/page.tsx index 786f79a..e3ea26f 100644 --- a/app/firms/[id]/settings/page.tsx +++ b/app/firms/[id]/settings/page.tsx @@ -478,7 +478,7 @@ export default function FirmSettingsPage() { <> {row.withdrawalStages.map((stage, idx) => { const isLast = idx === row.withdrawalStages.length - 1; - const showPlus = isLast && row.withdrawalStages.length > 1; + const showPlus = isLast; return ( diff --git a/app/page.tsx b/app/page.tsx index 1d7f9b9..8eb9835 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -494,7 +494,7 @@ export default function Home() { className="rounded-lg border border-slate-200 bg-slate-50 px-2.5 py-1.5 text-sm font-mono text-slate-800 focus:outline-none focus:ring-2 focus:ring-blue-500" > {enabledSymbols.map((s) => )} - +