Send event to posthog on user registration (#454)

This commit is contained in:
Luke Vella 2023-01-31 09:04:44 +00:00 committed by GitHub
parent c63b719969
commit 798e7941be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -155,6 +155,7 @@ export const RegisterForm: React.VoidFunctionComponent<{
email: res.user.email,
name: res.user.name,
});
posthog.capture("register");
}}
onResend={async () => {
const values = getValues();