ui: dont display globe image for free relay types

This commit is contained in:
ericholguin
2023-09-08 21:13:47 -06:00
committed by William Casarin
parent 94ce604b9d
commit 65f3651896

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)
}
}
}