Manos Chorianopoulos

MyRewardsBannerOfferCollectionViewCell fix

......@@ -43,6 +43,6 @@ public class MyRewardsBannerOfferCollectionViewCell: UICollectionViewCell {
func configureCell(data: ArticleModel) {
// Use article's preview image - same visual treatment as campaigns
self.postImageURL = data.img_preview ?? ""
self.postImageURL = data._img_preview.isEmpty ? nil : data._img_preview
}
}
......