fix: add bottom padding to UserRelaysView to prevent last relay from being cut off

Closes #3697

Signed-off-by: alltheseas

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
alltheseas
2026-03-18 15:40:47 -05:00
co-authored by Claude Opus 4.6
parent 69ba4b2c38
commit 4fe94b081c
@@ -31,6 +31,7 @@ struct UserRelaysView: View {
RelayView(state: state, relay: r, showActionButtons: .constant(true), recommended: true) RelayView(state: state, relay: r, showActionButtons: .constant(true), recommended: true)
} }
.listStyle(PlainListStyle()) .listStyle(PlainListStyle())
.padding(.bottom, tabHeight)
.navigationBarTitle(NSLocalizedString("Relays", comment: "Navigation bar title that shows the list of relays for a user.")) .navigationBarTitle(NSLocalizedString("Relays", comment: "Navigation bar title that shows the list of relays for a user."))
} }
} }