From 766d27bab0c1ba7515248f6b15e10e99e576d49f Mon Sep 17 00:00:00 2001 From: Dominic Go <18517029+dominicstop@users.noreply.github.com> Date: Tue, 10 Jan 2023 04:08:34 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20Fix:=20Fix=20Wrong=20Variable=20?= =?UTF-8?q?Usage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: Fix wrong variable usage in `RNIModalView.createModalNativeEventDict` --- ios/src_library/React Native/RNIModalView/RNIModalView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/src_library/React Native/RNIModalView/RNIModalView.swift b/ios/src_library/React Native/RNIModalView/RNIModalView.swift index 608bd1f3..bf8f81c1 100644 --- a/ios/src_library/React Native/RNIModalView/RNIModalView.swift +++ b/ios/src_library/React Native/RNIModalView/RNIModalView.swift @@ -489,7 +489,7 @@ extension RNIModalView { "modalLevelPrev": self.modalLevelPrev, ]; - if let reactTag = self.modalID { + if let reactTag = self.reactTag { dict["reactTag"] = reactTag; };