diff --git a/packages/desktop-client/src/components/accounts/MobileAccounts.js b/packages/desktop-client/src/components/accounts/MobileAccounts.js index 2569db93138..d8305459957 100644 --- a/packages/desktop-client/src/components/accounts/MobileAccounts.js +++ b/packages/desktop-client/src/components/accounts/MobileAccounts.js @@ -166,6 +166,10 @@ function AccountList({ const budgetedAccounts = accounts.filter(account => account.offbudget === 0); const offbudgetAccounts = accounts.filter(account => account.offbudget === 1); + const noBackgroundColorStyle = { + backgroundColor: 'transparent', + color: 'white', + }; // If there are no accounts, show a helpful message if (accounts.length === 0) { @@ -185,17 +189,12 @@ function AccountList({