Skip to content

Commit

Permalink
fix incorrect indentations in tables (#1958)
Browse files Browse the repository at this point in the history
Co-authored-by: Alexis Aguilar <[email protected]>
  • Loading branch information
LekoArts and alexisintech authored Jan 29, 2025
1 parent 296add9 commit 0566128
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
16 changes: 8 additions & 8 deletions docs/components/control/authenticate-with-callback.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ This component automatically handles the OAuth callback, completing the authenti
- `signInUrl?`
- `string`

Full URL or path where the SignIn component is mounted.
The full URL or path where the `<SignIn />` component is mounted.

---

- `signUpUrl?`
- `string`

Full URL or path where the SignUp component is mounted.
The full URL or path where the `<SignUp />` component is mounted.

---

Expand Down Expand Up @@ -55,42 +55,42 @@ This component automatically handles the OAuth callback, completing the authenti
- `firstFactorUrl`
- `string | undefined`

Full URL or path to navigate during sign in, if identifier verification is required.
The full URL or path to navigate to during sign in, if first factor verification is required.

---

- `secondFactorUrl`
- `string | undefined`

Full URL or path to navigate during sign in, if 2FA is enabled.
The full URL or path to navigate to during sign in, if [multi-factor authentication](/docs/authentication/configuration/sign-up-sign-in-options#multi-factor-authentication) is enabled.

---

- `resetPasswordUrl`
- `string`

Full URL or path to navigate during sign in, if the user is required to reset their password.
The full URL or path to navigate to during sign in, if the user is required to reset their password.

---

- `continueSignUpUrl`
- `string | undefined | null`

Full URL or path to navigate after an incomplete sign up.
The full URL or path to navigate to if the sign up requires additional information.

---

- `verifyEmailAddressUrl`
- `string | undefined | null`

Full URL or path to navigate after requesting email verification.
The full URL or path to navigate to after requesting email verification.

---

- `verifyPhoneNumberUrl`
- `string | undefined | null`

Full URL or path to navigate after requesting phone verification.
The full URL or path to navigate to after requesting phone verification.
</Properties>

## Usage
Expand Down
2 changes: 1 addition & 1 deletion docs/references/react/use-auth.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The `useAuth()` hook provides access to the current user's authentication state
- `isLoaded`
- `boolean`

A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.
A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.

---

Expand Down
2 changes: 1 addition & 1 deletion docs/references/react/use-organization-list.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ type OrganizationSuggestionStatus = 'pending' | 'accepted'
- `isLoaded`
- `boolean`
A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.
A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.
---
Expand Down
2 changes: 1 addition & 1 deletion docs/references/react/use-organization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ type OrganizationEnrollmentMode =
- `isLoaded`
- `boolean`
A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.
A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.
---
Expand Down
2 changes: 1 addition & 1 deletion docs/references/react/use-session-list.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The `useSessionList()` hook returns an array of [`Session`](/docs/references/jav
- `isLoaded`
- `boolean`

A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.
A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.

---

Expand Down
2 changes: 1 addition & 1 deletion docs/references/react/use-session.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The `useSession()` hook provides access to the current user's [`Session`](/docs/
- `isLoaded`
- `boolean`

A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.
A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.

---

Expand Down
2 changes: 1 addition & 1 deletion docs/references/react/use-sign-in.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The `useSignIn()` hook provides access to the [`SignIn`](/docs/references/javasc
- `isLoaded`
- `boolean`

A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.
A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.

---

Expand Down
2 changes: 1 addition & 1 deletion docs/references/react/use-sign-up.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The `useSignUp()` hook provides access to the [`SignUp`](/docs/references/javasc
- `isLoaded`
- `boolean`

A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.
A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.

---

Expand Down
2 changes: 1 addition & 1 deletion docs/references/react/use-user.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The `useUser()` hook provides access to the current user's [`User`](/docs/refere
- `isLoaded`
- `boolean`

A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.
A boolean that indicates whether Clerk has completed initialization. Initially `false`, becomes `true` once Clerk loads.

---

Expand Down
2 changes: 1 addition & 1 deletion docs/references/vue/use-user.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The `useUser()` composable provides access to the current user's [`User`](/docs/
- `isSignedIn`
- `Ref<boolean>`

Indicates whether a user is currently signed in.
Indicates whether a user is currently signed in.
</Properties>

## How to use the `useUser()` composable
Expand Down

0 comments on commit 0566128

Please sign in to comment.