From b1885700ca5cba3990c73985bc17995c3f605ac0 Mon Sep 17 00:00:00 2001 From: Joel Klabo Date: Fri, 6 Jan 2023 19:49:46 -0800 Subject: [PATCH] Use A Disabled Version of Shaka to Prevent Size Change --- damus/Views/EventActionBar.swift | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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) } } }