chore: Don't limit number of lines on translation info text

This commit is contained in:
Marcus Kida 2022-12-19 11:01:13 +01:00
parent ec80ad39ef
commit 98154ec2c3
No known key found for this signature in database
GPG Key ID: 19FF64E08013CA40
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ public final class StatusView: UIView {
let label = UILabel()
label.font = UIFontMetrics(forTextStyle: .footnote).scaledFont(for: .systemFont(ofSize: 13, weight: .regular))
label.textColor = Asset.Colors.Label.secondary.color
label.numberOfLines = 2
label.numberOfLines = 0
return label
}()
lazy var translatedInfoView: UIView = {