Skip to content

Commit

Permalink
fix: bad casing for authsteptype
Browse files Browse the repository at this point in the history
  • Loading branch information
RobChangCA committed Sep 24, 2024
1 parent c70b60c commit e46aeeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions account-kit/react/src/hooks/useAuthenticate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import type { BaseHookMutationArgs } from "../types.js";
import { useSigner } from "./useSigner.js";
import {
useAuthContext,
type AuthstepType,
type AuthStepType,
} from "../components/auth/context.js";

export type UseAuthenticateMutationArgs = BaseHookMutationArgs<
Expand All @@ -25,7 +25,7 @@ export type UseAuthenticateResult = {
authenticateAsync: UseMutateAsyncFunction<User, Error, AuthParams, unknown>;
isPending: boolean;
error: Error | null;
stage: AuthstepType;
stage: AuthStepType;
};

/**
Expand Down

0 comments on commit e46aeeb

Please sign in to comment.