Skip to content

Commit

Permalink
feat: added tracker for split expenses (#2845)
Browse files Browse the repository at this point in the history
  • Loading branch information
Suraj Kumar authored Mar 27, 2024
1 parent 78c51cc commit 6d05ebd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/app/core/services/tracking.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -653,6 +653,10 @@ export class TrackingService {
this.eventTrack('Spenders select expenses with Pending transactions');
}

spenderTriedSplittingExpenseWithPendingTxn(): void {
this.eventTrack('Spenders Split expenses with Pending transactions');
}

commuteDeductionAddLocationClickFromProfile(): void {
this.eventTrack('Commute Deduction - Add Location Click From Profile');
}
Expand Down
1 change: 1 addition & 0 deletions src/app/fyle/add-edit-expense/add-edit-expense.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -984,6 +984,7 @@ export class AddEditExpensePage implements OnInit {
'failure',
['msb-failure']
);
this.trackingService.spenderTriedSplittingExpenseWithPendingTxn();
}

getActionSheetOptions(): Observable<{ text: string; handler: () => void }[]> {
Expand Down

0 comments on commit 6d05ebd

Please sign in to comment.