From 508ff47d997294bd5fd9ad7a1476215f17a7b9ff Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 30 Aug 2023 14:36:20 -0500 Subject: [PATCH] getter only Signed-off-by: Matt Bruce --- VDS/Components/Label/Attributes/ActionLabelAttribute.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VDS/Components/Label/Attributes/ActionLabelAttribute.swift b/VDS/Components/Label/Attributes/ActionLabelAttribute.swift index 67241895..acd28f91 100644 --- a/VDS/Components/Label/Attributes/ActionLabelAttribute.swift +++ b/VDS/Components/Label/Attributes/ActionLabelAttribute.swift @@ -11,7 +11,7 @@ import Combine public protocol ActionLabelAttributeModel: LabelAttributeModel { var accessibleText: String? { get set } - var action: PassthroughSubject { get set } + var action: PassthroughSubject { get } } extension ActionLabelAttributeModel {