nwc: don't use yellow on the Zap Button for pending zaps

I just find this stressful
This commit is contained in:
William Casarin
2023-05-14 10:47:41 -07:00
parent 0091df8f77
commit e472e559a5

View File

@@ -54,15 +54,19 @@ struct ZapButton: View {
}
var zap_color: Color {
guard let our_zap else {
if our_zap == nil {
return Color.gray
}
// always orange !
return Color.orange
/*
if our_zap.is_paid {
return Color.orange
} else {
return Color.yellow
}
*/
}
func tap() {