Skip to content

Commit

Permalink
fix "Send Summary Page Viewed" event
Browse files Browse the repository at this point in the history
  • Loading branch information
yushih committed Oct 24, 2023
1 parent d5f1c31 commit 726e074
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 726e074

Please sign in to comment.