From dac1e1fe3f5459e772349eb668d5759f1a2a4c32 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Sun, 5 Feb 2023 19:56:37 -0500 Subject: [PATCH] Fix icon in suggested profile reason popover not adjusting to dark mode --- .../Explore/SuggestedProfileCardCollectionViewCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tusker/Screens/Explore/SuggestedProfileCardCollectionViewCell.swift b/Tusker/Screens/Explore/SuggestedProfileCardCollectionViewCell.swift index 9a0688ac..5c40a527 100644 --- a/Tusker/Screens/Explore/SuggestedProfileCardCollectionViewCell.swift +++ b/Tusker/Screens/Explore/SuggestedProfileCardCollectionViewCell.swift @@ -189,7 +189,7 @@ private struct SuggestionSourceView: View { var body: some View { VStack(alignment: .leading) { HStack { - Image(uiImage: source.image) + Image(uiImage: source.image.withRenderingMode(.alwaysTemplate)) Text(source.title) Spacer() }