Skip to content

Commit

Permalink
fix: mixpanel tracking
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinbodnar committed May 10, 2022
1 parent 10307bc commit e0fbbf0
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import { Translate } from 'react-localize-redux';

import { Mixpanel } from '../../../../mixpanel/index';
import FormButton from '../../../common/FormButton';
import LedgerImageCircle from '../../../svg/LedgerImageCircle';
import LedgerHdPaths from '../LedgerHdPaths';
Expand All @@ -20,7 +21,10 @@ const Authorize = ({
<br /><br />
<LedgerHdPaths
confirmedPath={confirmedPath}
setConfirmedPath={setConfirmedPath}
setConfirmedPath={(path) => {
setConfirmedPath(path);
Mixpanel.track('IE-Ledger Sign in set custom HD path');
}}
/>
<div className='buttons-bottom-buttons'>
<FormButton
Expand Down

0 comments on commit e0fbbf0

Please sign in to comment.