1
0
mirror of git://jb55.com/damus synced 2024-09-16 02:03:45 +00:00

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