Skip to content

Commit 37e807f

Browse files
authored
fix: resolve issue with banksync table border (#6825)
1 parent c9abc62 commit 37e807f

File tree

2 files changed

+8
-1
lines changed
  • packages/desktop-client/src/components/banksync
  • upcoming-release-notes

2 files changed

+8
-1
lines changed

packages/desktop-client/src/components/banksync/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ export function BankSync() {
115115
<Page
116116
header={t('Bank Sync')}
117117
style={{
118+
minHeight: 'initial',
118119
marginInline: floatingSidebar && !isNarrowWidth ? 'auto' : 0,
119120
paddingBottom: MOBILE_NAV_HEIGHT,
120121
}}
@@ -129,7 +130,7 @@ export function BankSync() {
129130
)}
130131
{Object.entries(groupedAccounts).map(([syncProvider, accounts]) => {
131132
return (
132-
<View key={syncProvider} style={{ marginBottom: '1em' }}>
133+
<View key={syncProvider} style={{ minHeight: 'initial' }}>
133134
{Object.keys(groupedAccounts).length > 1 && (
134135
<Text
135136
style={{ fontWeight: 500, fontSize: 20, margin: '.5em 0' }}

upcoming-release-notes/6825.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
category: Bugfixes
3+
authors: [aelxxs]
4+
---
5+
6+
Fix bank sync table borders.

0 commit comments

Comments
 (0)