diff --git a/VDSSample/ViewControllers/TileContainerViewController.swift b/VDSSample/ViewControllers/TileContainerViewController.swift index 98ea78a..6a58b9c 100644 --- a/VDSSample/ViewControllers/TileContainerViewController.swift +++ b/VDSSample/ViewControllers/TileContainerViewController.swift @@ -350,7 +350,7 @@ extension TileContainerViewController { //Created new BackgroundColor enum for sample app only. Since we defined enum with associated value color defined in TileContainer cannot be RawRepresentable & CaseIterable enum BackgroundColor: String, CaseIterable { - case primary, secondary, white, black, gray, custom + case primary, secondary, white, black, custom var color: TileContainer.BackgroundColor? { switch self { @@ -362,8 +362,6 @@ extension TileContainerViewController { .white case .black: .black - case .gray: - .gray case .custom: nil }