From 8e70aba1573780f9ec3646fbef70e9a43fc84271 Mon Sep 17 00:00:00 2001 From: "Hedden, Kyle Matthew" Date: Mon, 20 May 2024 11:54:01 -0400 Subject: [PATCH] Digital PCT265 defect CXTDT-54658: Code review. --- MVMCoreUI/Atomic/Molecules/Items/TabsTableViewCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCoreUI/Atomic/Molecules/Items/TabsTableViewCell.swift b/MVMCoreUI/Atomic/Molecules/Items/TabsTableViewCell.swift index 3bb8ce43..c97c0ed1 100644 --- a/MVMCoreUI/Atomic/Molecules/Items/TabsTableViewCell.swift +++ b/MVMCoreUI/Atomic/Molecules/Items/TabsTableViewCell.swift @@ -68,7 +68,7 @@ extension TabsTableViewCell: TabsDelegate { MVMCoreUIActionHandler.performActionUnstructured(with: SwapMoleculesActionModel(index < previousTabIndex ? .left : .right), sourceModel: model, additionalData: nil, delegateObject: delegateObject) if let analyticsData = try? model.tabs.tabs[index].analyticsData?.toJSONAny(), - let controller = self.delegateObject?.moleculeDelegate as? MVMCoreViewControllerProtocol { + let controller = delegateObject?.moleculeDelegate as? MVMCoreViewControllerProtocol { MVMCoreUILoggingHandler.shared()?.defaultLogPageUpdate(forController: controller, from: ["analyticsData": analyticsData]) } }