Skip to content

Commit

Permalink
fix row spacing on bank sync page (actualbudget#4458)
Browse files Browse the repository at this point in the history
* fix bank sync row heights

* note
  • Loading branch information
matt-fidd authored Feb 27, 2025
1 parent 94f9449 commit 3897a5a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ export function AccountsList({
}

return (
<View>
<View
style={{
minHeight: 'initial',
}}
>
{accounts.map(account => {
const hovered = hoveredAccount === account.id;

Expand Down
2 changes: 1 addition & 1 deletion packages/desktop-client/src/components/banksync/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export function BankSync() {
)}
{Object.entries(groupedAccounts).map(([syncProvider, accounts]) => {
return (
<View key={syncProvider}>
<View key={syncProvider} style={{ minHeight: 'initial' }}>
{Object.keys(groupedAccounts).length > 1 && (
<Text
style={{ fontWeight: 500, fontSize: 20, margin: '.5em 0' }}
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/4458.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [matt-fidd]
---

Fix row spacing on bank sync page

0 comments on commit 3897a5a

Please sign in to comment.