In my login workflow, I’m using the following workflow events:
[Action w/ passing conditions]
Sign the user up (search for users(email = input)) first item is empty
Log the user in (search for users(email = input)) first item is not empty
I’ve deleted this user from the dev and live db and run the login workflow.
The debugger shows that the sign the user up condition did not pass. Nonetheless, the logs will show that the user was signed up. The database also shows that this user was signed up.
This isn’t terrible considering the user still gets logged in, but I have a feeling this will lead to bugs and frustration in the future.
Does anyone know why this might be happening? How might it be fixed?