fix: access to with(appearance:) method

This commit is contained in:
Nikita Semenov 2023-02-09 17:48:14 +03:00
parent 2d3e12164d
commit 6ff2c8bf37
1 changed files with 1 additions and 1 deletions

View File

@ -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
}