From 1be2a9e1b16acf53a363351426f38e2be35a48b1 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Wed, 5 Jul 2023 07:03:16 -0700 Subject: [PATCH] ui: remove invalid zap text --- damus/Views/EventView.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/damus/Views/EventView.swift b/damus/Views/EventView.swift index 1d4d9045..24c8be8d 100644 --- a/damus/Views/EventView.swift +++ b/damus/Views/EventView.swift @@ -40,7 +40,6 @@ struct EventView: View { if let zap = damus.zaps.zaps[event.id] { ZapEvent(damus: damus, zap: zap, is_top_zap: options.contains(.top_zap)) } else { - Text("Invalid Zap", comment: "Text indicating that a zap event is malformed and could not be displayed.") EmptyView() } } else {