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 Jan 9, 2023
1 parent d0fee8f commit d795864
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 d795864

Please sign in to comment.