Skip to content

Commit

Permalink
fix: tracking filtered loans
Browse files Browse the repository at this point in the history
  • Loading branch information
roger-in-kiva committed Dec 2, 2024
1 parent 267d61a commit 9b232d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MyKiva/BorrowerCarousel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ watch(() => loans.value, () => {
if (!hasActiveLoans.value) {
$kvTrackEvent('portfolio', 'view', 'No active borrowers');
} else {
$kvTrackEvent('portfolio', 'view', 'Active borrowers', loans.value.length);
$kvTrackEvent('portfolio', 'view', 'Active borrowers', filteredLoans.value.length);
}
});
Expand Down

0 comments on commit 9b232d6

Please sign in to comment.