commit 65f365189655040a8bf339bed8c9db106fb05cf3 parent 94ce604b9d2a787d43227263835d412c1d31cd20 Author: ericholguin <eric.holguinsanchez@gmail.com> Date: Fri, 8 Sep 2023 21:13:47 -0600 ui: dont display globe image for free relay types Diffstat:
M | damus/Views/Relays/RelayType.swift | | | 5 | ----- |
1 file changed, 0 insertions(+), 5 deletions(-)
diff --git a/damus/Views/Relays/RelayType.swift b/damus/Views/Relays/RelayType.swift @@ -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) } } }