@dubsdotapp/expo 0.2.18 → 0.2.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -895,7 +895,8 @@ var PhantomDeeplinkAdapter = class {
895
895
  console.log(TAG2, "Using app_url:", appUrl);
896
896
  const params = new URLSearchParams({
897
897
  dapp_encryption_public_key: dappPubBase58,
898
- cluster: this.config.cluster || "mainnet-beta",
898
+ // Force mainnet-beta for deeplink session — devnet sessions cause -32603 on signMessage
899
+ cluster: "mainnet-beta",
899
900
  redirect_link: redirectLink,
900
901
  app_url: appUrl
901
902
  });