SKReceiptRefreshRequest is causing the tvOS App Store to open to to a "Coming Soon!" screen.
request = SKReceiptRefreshRequest(receiptProperties: nil)
request?.delegate = self
request?.start()
I'm currently using the refresh whenever my implementation of SKPaymentTransactionObserver encounters an error.
I think I can resolve this by only refreshing when a receipt is missing like SwiftyStoreKit, - https://github.com/bizz84/SwiftyStoreKit/blob/9974acf07b31b6f5bf363d5118dc1bd4fcac6122/Sources/SwiftyStoreKit/InAppReceiptVerificator.swift#L86 but it's really strange that this would cause the App Store to open.