damus

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

commit b2b687fb79a134a49c678360dcfab4583216fe6e
parent 94448a10bd021c1d701c261aed3c391d5030c82e
Author: William Casarin <jb55@jb55.com>
Date:   Tue, 27 Jun 2023 05:59:33 +0200

Revert "nozaps: hide zap total"

This reverts commit 57789de5cd6cfaa7da2c54fd1a743753a55f9908.

Diffstat:
Mdamus/Components/ZapButton.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus/Components/ZapButton.swift b/damus/Components/ZapButton.swift @@ -124,7 +124,7 @@ struct ZapButton: View { .frame(width:20, height: 20) }) - if !damus_state.settings.nozaps && zaps.zap_total > 0 { + if zaps.zap_total > 0 { Text(verbatim: format_msats_abbrev(zaps.zap_total)) .font(.footnote) .foregroundColor(zap_color)