From 93d23d620d3388015d0c857dfc65c9cbad634894 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Tue, 21 Jun 2022 15:47:14 -0500 Subject: [PATCH] added default value Signed-off-by: Matt Bruce --- MVMCoreUI/Atomic/Templates/SectionListTemplateModel.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCoreUI/Atomic/Templates/SectionListTemplateModel.swift b/MVMCoreUI/Atomic/Templates/SectionListTemplateModel.swift index 7a6ec169..023acae5 100644 --- a/MVMCoreUI/Atomic/Templates/SectionListTemplateModel.swift +++ b/MVMCoreUI/Atomic/Templates/SectionListTemplateModel.swift @@ -77,7 +77,7 @@ public protocol SectionListHeaderFooterModel { } // MARK: - Initializer //-------------------------------------------------- - public init(with sections: [SectionModel], pageType: String, screenHeading: String?, molecules: [ListItemModelProtocol & MoleculeModelProtocol]) { + public init(with sections: [SectionModel], pageType: String, molecules: [ListItemModelProtocol & MoleculeModelProtocol], screenHeading: String? = nil) { self.sections = sections super.init(pageType: pageType, screenHeading: screenHeading, molecules: molecules) }