fix(ui): add scroll boundary for account list in Quick Setup

- Add max-h-[320px] and overflow-y-auto to account grid
- Prevents overflow when many accounts exist
This commit is contained in:
kaitranntt
2026-01-28 11:57:22 -05:00
parent f972a4ee80
commit 85aa747aeb
@@ -22,7 +22,8 @@ export function AccountStep({
Select an account ({accounts.length})
</div>
<div className="grid gap-2">
{/* Scrollable account list with max-height for many accounts */}
<div className="grid gap-2 max-h-[320px] overflow-y-auto pr-1">
{accounts.map((acc) => (
<button
key={acc.id}