Skip to main content
Docs

<RedirectToUserProfile /> (deprecated)

Warning

This feature is deprecated. Please use the redirectToUserProfile() method instead.

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:

  1. In the Clerk Dashboard, navigate to the Account Portal page.
  2. 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>
main.js
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

What did you think of this content?

Last updated on