damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 67f0e3d2967b3d436d431e3660436db1634e228c
parent e498418c2d47c2042d9e27940d2897d7a205697c
Author: Daniel D’Aquino <daniel@daquino.me>
Date:   Fri, 18 Apr 2025 16:43:48 -0700

Add disclaimer to Coinos button

Changelog-Changed: Added disclaimer to clarify that Coinos is a third-party service
Signed-off-by: Daniel D’Aquino <daniel@daquino.me>

Diffstat:
Mdamus/Views/Wallet/ConnectWalletView.swift | 10++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/damus/Views/Wallet/ConnectWalletView.swift b/damus/Views/Wallet/ConnectWalletView.swift @@ -148,8 +148,14 @@ struct ConnectWalletView: View { Spacer() - CoinosButton() { - self.show_coinos_options = true + VStack(spacing: 5) { + CoinosButton() { + self.show_coinos_options = true + } + Text("Coinos is a service operated by a third-party. We have no access to your Coinos wallet.", comment: "Small caption with a disclaimer that Damus does not own or have access to Coinos wallets, Coinos is a third-party service.") + .font(.caption) + .foregroundStyle(.secondary) + .multilineTextAlignment(.center) } .padding() }