addressed review comments

This commit is contained in:
Keerthy 2022-12-23 23:33:18 +05:30
parent 9dd400f894
commit af97c5d387
2 changed files with 2 additions and 1 deletions

View File

@ -64,6 +64,7 @@ import Foundation
super.reset() super.reset()
headline.setFontStyle(.BoldTitleMedium) headline.setFontStyle(.BoldTitleMedium)
body.setFontStyle(.RegularBodySmall) body.setFontStyle(.RegularBodySmall)
accessibilityLabel = nil
} }
//---------------------------------------------------- //----------------------------------------------------

View File

@ -22,7 +22,7 @@ public class ListOneColumnTextWithWhitespaceDividerTallModel: ListItemModel, Mol
// MARK: - Initializer // MARK: - Initializer
//-------------------------------------------------- //--------------------------------------------------
public init(headline: LabelModel, body: LabelModel?, accessibilityText: String?) { public init(headline: LabelModel, body: LabelModel?) {
self.headline = headline self.headline = headline
self.body = body self.body = body
super.init() super.init()