🚀IC Reactor v3 is here! Featuring TanStack Query integration, improved type safety, and more. View v3 Documentation →
ic-reactor
    Preparing search index...

    Type Alias LoginState

    Represents the state of a login operation.

    type LoginState = {
        loading: boolean;
        isLoading: boolean;
        error: string | undefined;
    }
    Index

    Properties

    loading: boolean

    Use isLoading instead. Indicates whether the login operation is in progress.

    isLoading: boolean

    Indicates whether the login operation is in progress.

    error: string | undefined

    The error message, if any, occurred during login.