Lock not hitting lock.on after login

I’m also seeing this same issue.
we’ve placed both these and only the signup success fires, while authenticated does not

    lock.on('authenticated', (authResult) => {
      console.log('authenticated');
      lock.getUserInfo(authResult.accessToken, function (error, profile) {
        console.log({error, profile});
        if (error) return
        const { email, ...rest } = profile
      });
    })
    lock.on("signup success", () => {
      console.log('signup success');
    })