From a89f90d7ee0d6cd2622469b7e1a5a880a70575d9 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 23 Jun 2023 19:46:21 +0200 Subject: [PATCH] nozaps: hide SupportDamus on appstore builds --- damus/Views/Wallet/WalletView.swift | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/damus/Views/Wallet/WalletView.swift b/damus/Views/Wallet/WalletView.swift index 21fd6b47..8208e2e5 100644 --- a/damus/Views/Wallet/WalletView.swift +++ b/damus/Views/Wallet/WalletView.swift @@ -20,9 +20,11 @@ struct WalletView: View { func MainWalletView(nwc: WalletConnectURL) -> some View { VStack { - SupportDamus - - Spacer() + if !damus_state.settings.nozaps { + SupportDamus + + Spacer() + } Text(verbatim: nwc.relay.id)