diff --git a/src/index.tsx b/src/index.tsx index 68586a5e..0bcb1a3e 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -346,7 +346,10 @@ const ModalizeBase = ( toValue, useNativeDriver: USE_NATIVE_DRIVER, }), - ]).start(() => { + ]).start(({ finished }) => { + if (!finished) { + return; + } if (onClosed) { onClosed(); }