@@ -116,11 +116,13 @@ private extension ULAccountMismatchViewController {
116116 func configureSignedInAsLabel( ) {
117117 singedInAsLabel. applySecondaryBodyStyle ( )
118118 singedInAsLabel. text = viewModel. signedInText
119+ singedInAsLabel. numberOfLines = 0
119120 }
120121
121122 func configureWrongAccountLabel( ) {
122123 wrongAccountLabel. applySecondaryBodyStyle ( )
123124 wrongAccountLabel. text = viewModel. logOutTitle
125+ wrongAccountLabel. numberOfLines = 0
124126 }
125127
126128 func configureLogOutButton( ) {
@@ -160,6 +162,7 @@ private extension ULAccountMismatchViewController {
160162 extraInfoButton. applyLinkButtonStyle ( )
161163 extraInfoButton. contentEdgeInsets = Constants . extraInfoCustomInsets
162164 extraInfoButton. setTitle ( viewModel. auxiliaryButtonTitle, for: . normal)
165+ extraInfoButton. titleLabel? . numberOfLines = 0
163166 extraInfoButton. on ( . touchUpInside) { [ weak self] _ in
164167 self ? . didTapAuxiliaryButton ( )
165168 }
@@ -183,6 +186,7 @@ private extension ULAccountMismatchViewController {
183186 secondaryButton. isPrimary = false
184187 secondaryButton. isHidden = viewModel. isSecondaryButtonHidden
185188 secondaryButton. setTitle ( viewModel. secondaryButtonTitle, for: . normal)
189+ secondaryButton. titleLabel? . numberOfLines = 0
186190 secondaryButton. on ( . touchUpInside) { [ weak self] _ in
187191 self ? . didTapSecondaryButton ( )
188192 }
0 commit comments