<RedirectToUserProfile />
(deprecated)
The <RedirectToUserProfile />
component will navigate to the Account Portal User Profile URL which has been configured in your application instance. The behavior will be just like a server-side (3xx) redirect, and will override the current location in the history stack.
To find your User Profile URL:
- In the Clerk Dashboard, navigate to the Account Portal page.
- Under User profile, select the Visit icon.
Usage with JavaScript
The following method available on an instance of the Clerk
class is used to render and control the <RedirectToUserProfile />
component:
The following examples assume that you have followed the quickstart in order to add Clerk to your JavaScript application.
redirectToUserProfile()
Render the <RedirectToUserProfile />
component to an HTML <div>
element.
function redirectToUserProfile(): Promise<unknown>
import { Clerk } from '@clerk/clerk-js'
// Initialize Clerk with your Clerk Publishable Key
const clerkPubKey = import.meta.env.VITE_CLERK_PUBLISHABLE_KEY
const clerk = new Clerk(clerkPubKey)
await clerk.load()
await clerk.redirectToUserProfile()
Feedback
Last updated on