Skip to content

Commit

Permalink
Merge pull request #3329 from Emurgo/fix/YOEXT-810/send-summary-page-…
Browse files Browse the repository at this point in the history
…viewed

fix "Send Summary Page Viewed" event
  • Loading branch information
vsubhuman authored Oct 24, 2023
2 parents 98993c9 + 34819a3 commit c35d432
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -803,9 +803,6 @@ export default class WalletSendFormRevamp extends Component<Props, State> {
ampli.sendSelectAssetUpdated({
asset_count: assetCount,
});
ampli.sendSummaryPageViewed({
asset_count: assetCount,
});
}}
shouldSendAll={shouldSendAll}
/>
Expand Down Expand Up @@ -953,6 +950,9 @@ export default class WalletSendFormRevamp extends Component<Props, State> {
ampli.sendSelectAssetSelected({
asset_count: totalInput.nonDefaultEntries().length,
});
ampli.sendSummaryPageViewed({
asset_count: totalInput.nonDefaultEntries().length,
});
}
}
}
Expand Down

0 comments on commit c35d432

Please sign in to comment.