From 6ff2c8bf37a7aa3c5a13ace0a450d649381950ff Mon Sep 17 00:00:00 2001 From: Nikita Semenov Date: Thu, 9 Feb 2023 17:48:14 +0300 Subject: [PATCH] fix: access to with(appearance:) method --- .../Extensions/Appearance/TableRow+AppearanceConfigurable.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TITableKitUtils/Sources/Extensions/Appearance/TableRow+AppearanceConfigurable.swift b/TITableKitUtils/Sources/Extensions/Appearance/TableRow+AppearanceConfigurable.swift index 5430d7e9..bdedb3d6 100644 --- a/TITableKitUtils/Sources/Extensions/Appearance/TableRow+AppearanceConfigurable.swift +++ b/TITableKitUtils/Sources/Extensions/Appearance/TableRow+AppearanceConfigurable.swift @@ -28,7 +28,7 @@ extension TableRow: AppearanceConfigurable where CellType: AppearanceConfigurabl "TableRowConfigureAppearanceActionId" } - func with(appearance: CellType.Appearance) -> Self { + public func with(appearance: CellType.Appearance) -> Self { configure(appearance: appearance) return self }