fix(accounts): vertically center rows in the balance history modal

The base TableCell defaults to align-top, so a row's date and balance text
sat above the vertically-centered action icons. Center the data-row cells so
every column lines up.
This commit is contained in:
Víctor Falcón 2026-07-16 08:28:15 +02:00
parent 5ee2892db4
commit ec509676ed
1 changed files with 4 additions and 1 deletions

View File

@ -312,7 +312,10 @@ export function BalancesModal({
</TableRow>
) : (
balances.map((balance) => (
<TableRow key={balance.id}>
<TableRow
key={balance.id}
className="[&>td]:align-middle"
>
<TableCell>
{formatDate(
balance.balance_date,