Skip to content

Commit

Permalink
🐞 Fix: Fix Wrong Variable Usage
Browse files Browse the repository at this point in the history
Summary: Fix wrong variable usage in `RNIModalView.createModalNativeEventDict`
  • Loading branch information
dominicstop committed Mar 3, 2023
1 parent 3497388 commit 766d27b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ extension RNIModalView {
"modalLevelPrev": self.modalLevelPrev,
];

if let reactTag = self.modalID {
if let reactTag = self.reactTag {
dict["reactTag"] = reactTag;
};

Expand Down

0 comments on commit 766d27b

Please sign in to comment.