nwc: don't use yellow on the Zap Button for pending zaps
I just find this stressful
This commit is contained in:
@@ -54,15 +54,19 @@ struct ZapButton: View {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var zap_color: Color {
|
var zap_color: Color {
|
||||||
guard let our_zap else {
|
if our_zap == nil {
|
||||||
return Color.gray
|
return Color.gray
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// always orange !
|
||||||
|
return Color.orange
|
||||||
|
/*
|
||||||
if our_zap.is_paid {
|
if our_zap.is_paid {
|
||||||
return Color.orange
|
return Color.orange
|
||||||
} else {
|
} else {
|
||||||
return Color.yellow
|
return Color.yellow
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
func tap() {
|
func tap() {
|
||||||
|
|||||||
Reference in New Issue
Block a user