fix: resolve issue with banksync table border (#6825)

This commit is contained in:
Alexis Vielma
2026-01-31 10:23:11 -08:00
committed by GitHub
parent c9abc62b3a
commit 37e807f161
2 changed files with 8 additions and 1 deletions

View File

@@ -115,6 +115,7 @@ export function BankSync() {
<Page
header={t('Bank Sync')}
style={{
minHeight: 'initial',
marginInline: floatingSidebar && !isNarrowWidth ? 'auto' : 0,
paddingBottom: MOBILE_NAV_HEIGHT,
}}
@@ -129,7 +130,7 @@ export function BankSync() {
)}
{Object.entries(groupedAccounts).map(([syncProvider, accounts]) => {
return (
<View key={syncProvider} style={{ marginBottom: '1em' }}>
<View key={syncProvider} style={{ minHeight: 'initial' }}>
{Object.keys(groupedAccounts).length > 1 && (
<Text
style={{ fontWeight: 500, fontSize: 20, margin: '.5em 0' }}

View File

@@ -0,0 +1,6 @@
---
category: Bugfixes
authors: [aelxxs]
---
Fix bank sync table borders.