Is OTA prevent deferred Deeplinks?

Hi, I have some problem with deferred deeplink with ota app.

I use ‘Adjust’ method for deferred deeplink, and it goes to my app store link.
When app installed and opened, it couldn’t reach intended specific screen

I think ota affects to deferred deeplink.
After opening my app it checked expo ota and if there are some updates, app reloaded.

Is there a possibility of loss in this process?

This is my code.

constructor(props) {
    super(props);
    
    adjustConfig.setDeferredDeeplinkCallbackListener(function(deeplink) {
      console.log("Deferred deep link URL content: " + deeplink);
    });
}


async componentDidMount() {
   Updates.checkForUpdateAsync(); // this function use expo ota example
}