From b22b52330667fb5e9d6ebdcd7623d9eff03501dd Mon Sep 17 00:00:00 2001 From: victoria Date: Wed, 18 Dec 2024 20:06:52 -0500 Subject: [PATCH] Update docs/references/react/use-clerk.mdx Co-authored-by: Alexis Aguilar <98043211+alexisintech@users.noreply.github.com> --- docs/references/react/use-clerk.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/references/react/use-clerk.mdx b/docs/references/react/use-clerk.mdx index 44b3ef2ef1..d8c3fd21f1 100644 --- a/docs/references/react/use-clerk.mdx +++ b/docs/references/react/use-clerk.mdx @@ -14,7 +14,7 @@ The `useClerk()` hook returns the `Clerk` object, which includes all the methods ## How to use the `useClerk()` hook -The following example demonstrates how to use the `useClerk()` hook to open the sign-in modal. The `clerk` object is used to call the [`openSignIn()`](/docs/references/javascript/clerk/clerk#opensignin) method to open the sign-in modal. +The following example uses the `useClerk()` hook to access the `clerk` object. The `clerk` object is used to call the [`openSignIn()`](/docs/references/javascript/clerk/clerk#sign-in) method to open the sign-in modal. ```tsx {{ filename: 'src/Home.tsx' }} import { useClerk } from '@clerk/clerk-react'