Disable accessibility for emojis during verification

This commit is contained in:
Alfonso Grillo
2023-04-26 12:58:18 +02:00
parent 257e256761
commit 8cfb199bc2
@@ -24,4 +24,9 @@ class VerifyEmojiCollectionViewCell: UICollectionViewCell, Reusable, Themable {
func update(theme: Theme) {
name.textColor = theme.textPrimaryColor
}
override func awakeFromNib() {
super.awakeFromNib()
emoji.isAccessibilityElement = false
}
}