Merge pull request #3699 from alltheseas/fix/relay-list-bottom-cutoff

fix: add bottom padding to UserRelaysView to prevent last relay cutoff
This commit is contained in:
Daniel D’Aquino
2026-03-18 14:40:05 -07:00
committed by GitHub
@@ -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."))
} }
} }