fix widget / icon view layout

This commit is contained in:
Trey t
2022-02-26 11:50:51 -06:00
parent 5357b4ffb8
commit 09e1e96a0a
4 changed files with 21 additions and 39 deletions

View File

@@ -75,9 +75,9 @@ final class EmojiMoodImages: MoodImagable {
case .great:
return Image(uiImage: "😀".textToImage()!)
case .missing:
return Image(uiImage: "x".textToImage()!)
return Image(uiImage: "X".textToImage()!)
case .placeholder:
return Image(uiImage: "x".textToImage()!)
return Image(uiImage: "X".textToImage()!)
}
}
}
@@ -96,9 +96,9 @@ final class HandEmojiMoodImages: MoodImagable {
case .great:
return Image(uiImage: "🙏".textToImage()!)
case .missing:
return Image(uiImage: "x".textToImage()!)
return Image(uiImage: "X".textToImage()!)
case .placeholder:
return Image(uiImage: "x".textToImage()!)
return Image(uiImage: "X".textToImage()!)
}
}
}