web: remove tracking event when signup is skipped

This commit is contained in:
Abdullah Atta
2023-02-13 17:46:55 +05:00
committed by Abdullah Atta
parent b6f922eb92
commit 030e57d0a9
2 changed files with 0 additions and 6 deletions

View File

@@ -75,11 +75,6 @@ export const ANALYTICS_EVENTS = {
name: "/account/created",
description: "Sent when you create an account.",
type: "view"
},
signupSkipped: {
name: "/signup/skipped",
description: `Sent when you press "Jump to app" button on signup screen.`,
type: "view"
}
} as const;

View File

@@ -888,7 +888,6 @@ export function AuthForm<T extends AuthRoutes>(props: AuthFormProps<T>) {
}
}}
onClick={() => {
if (type === "signup") trackEvent(ANALYTICS_EVENTS.signupSkipped);
openURL("/notes/");
}}
>