diff --git a/VDS/Components/Label/Attributes/ImageLabelAttribute.swift b/VDS/Components/Label/Attributes/ImageLabelAttribute.swift index fed62a91..f46e2e8c 100644 --- a/VDS/Components/Label/Attributes/ImageLabelAttribute.swift +++ b/VDS/Components/Label/Attributes/ImageLabelAttribute.swift @@ -57,11 +57,7 @@ public struct ImageLabelAttribute: AttachmentLabelAttributeModel { //get a local asset if let imageName { - guard let bundle = Bundle(identifier: "com.vzw.vds") else { - throw Error.bundleNotFound - } - - guard let image = UIImage(named: imageName, in: bundle, with: nil) else { + guard let image = BundleManager.shared.image(for: imageName) else { throw Error.imageNotFound(imageName) }