form-graph
    Preparing search index...

    Type Alias ListOpRefusal

    A list op that could not proceed; the membership is untouched. 'inactive' comes from the React binding's ops when the list left the active branch between render and click — the core store.list() throws for an inactive key instead (a programmer error, not a race).

    type ListOpRefusal = {
        reason: "min" | "max" | "unknown_id" | "inactive";
        success: false;
    }
    Index
    reason: "min" | "max" | "unknown_id" | "inactive"
    success: false