Skip to content

Commit d9ea8e8

Browse files
fix: use correct payment method for google iap
1 parent f1a563e commit d9ea8e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/ui-react/src/containers/PaymentContainer/PaymentContainer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ const processBillingReceipt = (receipt: Blob | string, transactionId: string) =>
4444
}
4545
};
4646

47-
const EXTERNAL_PAYMENT_METHODS = ['Apple In-App', 'Android In-App', 'Roku In-App'];
47+
const EXTERNAL_PAYMENT_METHODS = ['Apple In-App', 'Google In-App', 'Roku In-App'];
4848
const STORE_LINKS: Record<string, string> = {
4949
apple: 'https://support.apple.com/118428',
50-
android: 'https://support.google.com/googleplay/answer/7018481',
50+
google: 'https://support.google.com/googleplay/answer/7018481',
5151
roku: 'https://support.roku.com/article/208756478',
5252
};
5353

0 commit comments

Comments
 (0)