currentSignIn
The current sign-in attempt, if one is in progress.
This represents an ongoing authentication flow and provides access to verification steps and authentication state. Returns null when no sign-in is active or if the SDK is not initialized.
Example usage:
val currentSignIn = Clerk.auth.currentSignIn
if (currentSignIn != null) {
// Handle ongoing sign-in
}Content copied to clipboard