desktop wallets not showing properly fix

This commit is contained in:
julian 2023-04-10 16:10:59 -06:00
parent c76bcd81e7
commit 7e95b3a00f

View file

@ -37,10 +37,11 @@ class _WalletTableState extends ConsumerState<WalletSummaryTable> {
return ConditionalParent(
condition: index + 1 == providersByCoin.length,
builder: (child) => const Padding(
padding: EdgeInsets.only(
builder: (child) => Padding(
padding: const EdgeInsets.only(
bottom: 16,
),
child: child,
),
child: DesktopWalletSummaryRow(
key: Key("DesktopWalletSummaryRow_key_${coin.name}"),