commit 988da17b06afe1bd4918734f93d90bc1b5af509e
parent 5e530bfc9c584dcb93729b6a21863c97125ffb21
Author: ericholguin <ericholguin@apache.org>
Date: Mon, 11 Mar 2024 08:27:42 -0600
Minor Fixes
This adds the recommended parameter to the relay view used in Wallet view.
Signed-off-by: ericholguin <ericholguin@apache.org>
Signed-off-by: William Casarin <jb55@jb55.com>
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git 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)