Skip to content

Commit c2a61db

Browse files
authored
Merge pull request #11 from bamlab/tpucci-patch-1
fix(package): Fix ios picker removal
2 parents a6d1edf + c58d4b5 commit c2a61db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/withPickerValues/KeyboardModal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const removeKeyboardModalComponent = () => {
6262

6363
if (keyboardModalCount === 0) {
6464
if (keyboardDidShowListener) keyboardDidShowListener.remove();
65-
if (keyboardModalInstance) keyboardModalInstance.remove();
65+
if (keyboardModalInstance) keyboardModalInstance.destroy();
6666
}
6767
};
6868

0 commit comments

Comments
 (0)