diff --git a/damus/Views/EventActionBar.swift b/damus/Views/EventActionBar.swift index 40827c9f..1a5f3a66 100644 --- a/damus/Views/EventActionBar.swift +++ b/damus/Views/EventActionBar.swift @@ -171,9 +171,8 @@ struct LikeButton: View { if liked { Text("🤙", comment: "Button with emoji to like an event.") } else { - Image("shaka") - .renderingMode(.template) - .foregroundColor(.gray) + Text("🤙") + .grayscale(1) } } }