From 8d425862f5bbf56ee19473deb2f95299abc01393 Mon Sep 17 00:00:00 2001 From: rajampetS Date: Thu, 10 Jun 2021 11:43:01 +0530 Subject: [PATCH] editing the naming convention --- MVMCoreUI/Atomic/Atoms/Selectors/RadioBoxes.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MVMCoreUI/Atomic/Atoms/Selectors/RadioBoxes.swift b/MVMCoreUI/Atomic/Atoms/Selectors/RadioBoxes.swift index 7ca3056f..64b0644c 100644 --- a/MVMCoreUI/Atomic/Atoms/Selectors/RadioBoxes.swift +++ b/MVMCoreUI/Atomic/Atoms/Selectors/RadioBoxes.swift @@ -166,8 +166,8 @@ extension RadioBoxes: UICollectionViewDelegate { cell.radioBox.selectBox() _ = FormValidator.validate(delegate: delegateObject?.formHolderDelegate) cell.updateAccessibility() - guard let nu = boxes?[indexPath.row] else { return } - radioDelegate?.selectedRadioBox(text: nu.text) + guard let radioB = boxes?[indexPath.row] else { return } + radioDelegate?.selectedRadioBox(text: radioB.text) } open func collectionView(_ collectionView: UICollectionView, didDeselectItemAt indexPath: IndexPath) {