From 6902dea1397ad74c6776f7aa994a847ac04eec95 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Wed, 17 Apr 2024 14:39:26 -0500 Subject: [PATCH] CXTDT-544383 - removed 2x and replaced with 3x Signed-off-by: Matt Bruce --- VDS/Components/TileContainer/TileContainer.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/VDS/Components/TileContainer/TileContainer.swift b/VDS/Components/TileContainer/TileContainer.swift index 248093e2..1d415393 100644 --- a/VDS/Components/TileContainer/TileContainer.swift +++ b/VDS/Components/TileContainer/TileContainer.swift @@ -14,7 +14,7 @@ open class TileContainer: TileContainerBase { /// Enum used to describe the padding choices used for this component. public enum Padding: DefaultValuing { - case padding2X + case padding3X case padding4X case padding6X case padding8X @@ -25,8 +25,8 @@ open class TileContainer: TileContainerBase { public var value: CGFloat { switch self { - case .padding2X: - return VDSLayout.space2X + case .padding3X: + return VDSLayout.space3X case .padding4X: return VDSLayout.space4X case .padding6X: