Skip to content

Commit

Permalink
Removed timestamp from our custom mixpanel properties
Browse files Browse the repository at this point in the history
  • Loading branch information
sinhaaaryan committed Dec 17, 2024
1 parent 490c676 commit b1f08f4
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/utils/mixpanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,13 @@ export const trackProfileCompletion = (role: string, status: string) => {
// Add this new function
export const trackViewRoute = (role: string) => {
trackEvent("View Route Clicked", {
role,
timestamp: new Date().toISOString(),
role
});
};

export const trackRequestResponse = (action: "accept" | "decline", role: string) => {
console.log('Tracking request response:', { action, role, timestamp: new Date().toISOString() });
trackEvent("Request Response", {
action,
role,
timestamp: new Date().toISOString(),
role
});
};

0 comments on commit b1f08f4

Please sign in to comment.