From a4cc4fd3a3a137c2994ab96f46876e653da4f611 Mon Sep 17 00:00:00 2001 From: "stepie.ub" Date: Sun, 28 May 2023 09:30:41 +0545 Subject: [PATCH] issue fixing --- .../User Interface/View/Cell/RecipientsCollectionViewCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GME Remit/Modules/RecipientModules/Recipients/User Interface/View/Cell/RecipientsCollectionViewCell.swift b/GME Remit/Modules/RecipientModules/Recipients/User Interface/View/Cell/RecipientsCollectionViewCell.swift index 63d64476..342a7228 100644 --- a/GME Remit/Modules/RecipientModules/Recipients/User Interface/View/Cell/RecipientsCollectionViewCell.swift +++ b/GME Remit/Modules/RecipientModules/Recipients/User Interface/View/Cell/RecipientsCollectionViewCell.swift @@ -38,7 +38,7 @@ class RecipientsCollectionViewCell: UICollectionViewCell { } func setUp(model: Recipient?) { - self.nameLabel.text = model?.firstName ?? "" + self.nameLabel.text = model?.fullName ?? "" self.nameLabel.textColor = .black self.initalsLabel.text = nameInitials }