Merge branch 'feature/client_parameter_web_bridge' into 'develop'

Remove unnecessary throws

### Summary
Remove unused throws to simplify callers

### JIRA Ticket
https://onejira.verizon.com/browse/ONEAPP-6030

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

See merge request https://gitlab.verizon.com/BPHV_MIPS/mvm_core/-/merge_requests/315
This commit is contained in:
Hedden, Kyle Matthew 2024-02-21 21:39:34 +00:00
commit c8cabfaee1

View File

@ -90,7 +90,7 @@ open class ActionOpenPageHandler: MVMCoreJSONActionHandlerProtocol {
public extension ClientParameterHandler {
/// Iterates through the clientParameters list. Gets values from the individual handlers and attaches the parameters to extraParameters.
func getClientParameters(with model: ClientParameterModel, requestParameters: [String: Any], actionId: String, showLoadingOverlay: Bool) async throws -> [String: Any]? {
func getClientParameters(with model: ClientParameterModel, requestParameters: [String: Any], actionId: String, showLoadingOverlay: Bool) async -> [String: Any]? {
if showLoadingOverlay {
MVMCoreLoadingOverlayHandler.sharedLoadingOverlay()?.startLoading()
}