Skip to content

Commit

Permalink
Fix broken links in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
N2D4 committed Jan 7, 2025
1 parent bca8202 commit 334b6a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/fern/docs/pages/components/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ slug: components

Stack Auth provides a set of components for Next.js applications.

To get started with Stack Auth in your Next.js application, follow the [setup guide](/docs/getting-started/setup). To see the hooks and objects in the Next.js SDK, see the [SDK reference](../sdk).
To get started with Stack Auth in your Next.js application, follow the [setup guide](/getting-started/setup). To see the hooks and objects in the Next.js SDK, see the [SDK reference](../sdk).

<div className="components-cards">
<style>{`
Expand Down
2 changes: 1 addition & 1 deletion docs/fern/docs/pages/concepts/stack-app.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ By now, you may have seen the `useStackApp()` hook and the `stackServerApp` vari

Nearly all of Stack's functionality is on your `StackApp` object. Think of this object as the "connection" from your code to Stack's servers. Each app is always associated with one specific project ID (by default the one found in your environment variables).

There is also a page on [StackApp](../sdk/types/stack-app) in the SDK reference, which lists all available functions.
There is also a page on [StackApp](../sdk/objects/stack-app) in the SDK reference, which lists all available functions.

## `getXyz`/`listXyz` vs. `useXyz`

Expand Down
2 changes: 1 addition & 1 deletion docs/fern/docs/pages/getting-started/users.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ You can also store custom user data in the `clientMetadata`, `serverMetadata`, o

## Signing out

You can sign out the user by redirecting them to `/handler/sign-out` or simply by calling `user.signOut()`. They will be redirected to the URL [configured as `afterSignOut` in the `StackServerApp`](/sdk/types/stack-app).
You can sign out the user by redirecting them to `/handler/sign-out` or simply by calling `user.signOut()`. They will be redirected to the URL [configured as `afterSignOut` in the `StackServerApp`](/sdk/objects/stack-app).

<Tabs>
<Tab title="user.signOut()">
Expand Down

0 comments on commit 334b6a4

Please sign in to comment.