mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix Buy Ether via Moonpay and Wyre actions (#14322)
This commit is contained in:
parent
e62678464c
commit
6f5cc9c6c7
@ -154,11 +154,12 @@ export default class DepositEtherModal extends Component {
|
|||||||
text: t('buyCryptoWithMoonPayDescription', [symbol]),
|
text: t('buyCryptoWithMoonPayDescription', [symbol]),
|
||||||
buttonLabel: t('continueToMoonPay'),
|
buttonLabel: t('continueToMoonPay'),
|
||||||
onButtonClick: () => {
|
onButtonClick: () => {
|
||||||
this.context.metricsEvent({
|
this.context.trackEvent({
|
||||||
eventOpts: {
|
category: 'Accounts',
|
||||||
category: 'Accounts',
|
event: 'Click buy Ether via MoonPay',
|
||||||
action: 'Deposit tokens',
|
properties: {
|
||||||
name: 'Click buy tokens via MoonPay',
|
action: 'Deposit Ether',
|
||||||
|
legacy_event: true,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
toMoonPay(address, chainId);
|
toMoonPay(address, chainId);
|
||||||
@ -171,11 +172,12 @@ export default class DepositEtherModal extends Component {
|
|||||||
text: t('buyWithWyreDescription'),
|
text: t('buyWithWyreDescription'),
|
||||||
buttonLabel: t('continueToWyre'),
|
buttonLabel: t('continueToWyre'),
|
||||||
onButtonClick: () => {
|
onButtonClick: () => {
|
||||||
this.context.metricsEvent({
|
this.context.trackEvent({
|
||||||
eventOpts: {
|
category: 'Accounts',
|
||||||
category: 'Accounts',
|
event: 'Click buy Ether via Wyre',
|
||||||
|
properties: {
|
||||||
action: 'Deposit Ether',
|
action: 'Deposit Ether',
|
||||||
name: 'Click buy Ether via Wyre',
|
legacy_event: true,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
toWyre(address);
|
toWyre(address);
|
||||||
|
Loading…
Reference in New Issue
Block a user