From e46aeebd72b211ab3046dad4a85db2e992b1839f Mon Sep 17 00:00:00 2001 From: rob chang Date: Tue, 24 Sep 2024 11:58:53 -0400 Subject: [PATCH] fix: bad casing for authsteptype --- account-kit/react/src/hooks/useAuthenticate.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/account-kit/react/src/hooks/useAuthenticate.ts b/account-kit/react/src/hooks/useAuthenticate.ts index af5ded31c7..1f68b3ef24 100644 --- a/account-kit/react/src/hooks/useAuthenticate.ts +++ b/account-kit/react/src/hooks/useAuthenticate.ts @@ -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< @@ -25,7 +25,7 @@ export type UseAuthenticateResult = { authenticateAsync: UseMutateAsyncFunction; isPending: boolean; error: Error | null; - stage: AuthstepType; + stage: AuthStepType; }; /**