Skip to content

Commit

Permalink
fix: resolve missing analytics issue
Browse files Browse the repository at this point in the history
  • Loading branch information
greatertomi committed May 7, 2024
1 parent dd13595 commit 1a0caec
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,11 +256,13 @@ export const WalletSetupWizard = ({
void sendAnalytics(postHogOnboardingActions.create.SAVE_RECOVERY_PHRASE_NEXT_CLICK);
} else {
setIsResetMnemonicModalOpen(true);
void sendAnalytics(postHogOnboardingActions.create.ENTER_RECOVERY_PHRASE_NEXT_CLICK);
}
}}
onBack={onCancel}
onNext={moveForward}
onNext={() => {
moveForward();
void sendAnalytics(postHogOnboardingActions.create.ENTER_RECOVERY_PHRASE_NEXT_CLICK);
}}
renderVideoPopupContent={({ onClose }) => (
<MnemonicVideoPopupContent
translations={mnemonicVideoPopupContentTranslations}
Expand Down

0 comments on commit 1a0caec

Please sign in to comment.