You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To Reproduce
In my case im experiencing it when doing this:
constpurchaseSubscription=async(sku: string)=>{awaitrequestSubscription({ sku,appAccountToken: user._id,isOfferPersonalized: false}).then(async(purchase)=>{if(purchase){if(!Array.isArray(purchase)){// Handle the purchase being updatedawaitfinishTransaction({ purchase,isConsumable: false});setTransactionId(purchase.originalTransactionIdentifierIOS??null);// Sets the transactionId to a float value}}}).catch((error)=>{console.log(error);});};
The text was updated successfully, but these errors were encountered:
Description
purchase.originalTransactionIdentifierIOS
returns as a float number like2000000706152106.0
Expected Behavior
originalTransactionIdentifierIOS
is typed to bestring | undefined
Environment:
To Reproduce
In my case im experiencing it when doing this:
The text was updated successfully, but these errors were encountered: