Update useHandoffListener.ts

This commit is contained in:
Marcos Rodriguez Vélez 2025-02-01 10:29:05 -04:00 committed by GitHub
parent 715991b106
commit 6765dd7246
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,3 @@
import { Platform } from 'react-native';
import iosHandoffListener from './useHandoffListener.ios';
const useHandoffListener = Platform.OS === 'ios' ? iosHandoffListener : () => {};
const useHandoffListener = () => {};
export default useHandoffListener;