Skip to content

Commit

Permalink
fix broken links (#1295)
Browse files Browse the repository at this point in the history
  • Loading branch information
panteliselef authored Jul 19, 2024
1 parent 4029701 commit 52315ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/references/astro/ui-react.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Learn how to user Clerk inside an Astro app with React

# Use Clerk with Astro and React

Astro supports intregrations with many UI Frameworks. This guide we teach you how to untilize [`@clerk/astro`](/docs/references/astro/overview) and use [Clerk's components](https://clerk.com/docs/pr/1255/components/overview#ui-components), hooks and the new stores. If you have not set up you Astro applicatoin to work with Clerk, visit the [Astro quickstart.](https://clerk.com/docs/pr/1255/quickstarts/astro)
Astro supports intregrations with many UI Frameworks. This guide we teach you how to untilize [`@clerk/astro`](/docs/references/astro/overview) and use [Clerk's components](https://clerk.com/docs/components/overview#ui-components), hooks and the new stores. If you have not set up you Astro applicatoin to work with Clerk, visit the [Astro quickstart.](https://clerk.com/docs/quickstarts/astro)


<Steps>
Expand Down
2 changes: 1 addition & 1 deletion docs/references/expo/expo-impersonation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ The following code should be placed in the `Page` component of your `app/(dashbo

### Create a hook for signing out

Finally, create a helper function for signing out. Usually this can be as simple as calling Clerk's [`signOut()`](https://clerk.com/docs/pr/1038/references/javascript/clerk/clerk#sign-out) function, but since you're handling multiple sessions, you must add some checks to ensure you're signing out of the right session.
Finally, create a helper function for signing out. Usually this can be as simple as calling Clerk's [`signOut()`](https://clerk.com/docs/references/javascript/clerk/clerk#sign-out) function, but since you're handling multiple sessions, you must add some checks to ensure you're signing out of the right session.

```tsx {{ filename: "app/(dashboard)/index.tsx" }}
const onSignOutPress = async (sessionId: string) => {
Expand Down

0 comments on commit 52315ff

Please sign in to comment.