ui: dont display globe image for free relay types

This commit is contained in:
ericholguin
2023-09-09 09:45:45 -07:00
committed by William Casarin
parent 94ce604b9d
commit 65f3651896
-5
View File
@@ -13,11 +13,6 @@ struct RelayType: View {
var body: some View {
if is_paid {
Image("bitcoin-logo")
} else {
Image("globe")
.resizable()
.frame(width: 20, height: 20)
.foregroundColor(.gray)
}
}
}