Merge branch 'bugfix/missed_headline_body' into 'develop'

Digital PCT265 story ONEAPP-6389 - Conversion to title lockup

### Summary
Removing unnecessary throw

Co-authored-by: Scott Pfeil <Scott.Pfeil3@verizonwireless.com>

See merge request https://gitlab.verizon.com/BPHV_MIPS/mvm_core_ui/-/merge_requests/1078
This commit is contained in:
Bruce, Matt R 2024-03-19 13:06:05 +00:00
commit 82b5c0e655

View File

@ -44,7 +44,7 @@ public class TitleLockupModel: MoleculeModelProtocol, ParentMoleculeModelProtoco
// MARK: - Initializer
//--------------------------------------------------
public init(eyebrow: LabelModel? = nil, title: LabelModel, subTitle: LabelModel? = nil) throws {
public init(eyebrow: LabelModel? = nil, title: LabelModel, subTitle: LabelModel? = nil) {
self.eyebrow = eyebrow
self.title = title
self.subTitle = subTitle