From 988da17b06afe1bd4918734f93d90bc1b5af509e Mon Sep 17 00:00:00 2001 From: ericholguin Date: Mon, 11 Mar 2024 08:27:42 -0600 Subject: [PATCH] Minor Fixes This adds the recommended parameter to the relay view used in Wallet view. Signed-off-by: ericholguin Signed-off-by: William Casarin --- damus/Views/Wallet/WalletView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/damus/Views/Wallet/WalletView.swift b/damus/Views/Wallet/WalletView.swift index 096bebdb..3a3c9f46 100644 --- a/damus/Views/Wallet/WalletView.swift +++ b/damus/Views/Wallet/WalletView.swift @@ -31,10 +31,10 @@ struct WalletView: View { Text("Wallet Relay") .fontWeight(.semibold) .padding(.top) - + Divider() - - RelayView(state: damus_state, relay: nwc.relay.id, showActionButtons: .constant(false)) + + RelayView(state: damus_state, relay: nwc.relay.id, showActionButtons: .constant(false), recommended: false) } .frame(maxWidth: .infinity, minHeight: 125, alignment: .top) .padding(.horizontal, 10)