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) => )} - +