currentSignUp

The current sign-up attempt, if one is in progress.

This represents an ongoing user registration flow and provides access to verification steps and registration state. Returns null when no sign-up is active or if the SDK is not initialized.

Example usage:

val currentSignUp = Clerk.auth.currentSignUp
if (currentSignUp != null) {
// Handle ongoing sign-up
}