Skip to content

Commit 85d2689

Browse files
committedApr 8, 2024
docs(website): fix broken getting started link
1 parent 1617d22 commit 85d2689

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎website/docs/getting-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ This is a basic client, without any options or middleware functions. If you want
4747

4848
### 2. Define a new action
4949

50-
This is how a safe action is created. Providing a validation input schema to the function via [`schema()`](docs/safe-action-client/instance-methods#schema), we're sure that data that comes in is type safe and validated.
50+
This is how a safe action is created. Providing a validation input schema to the function via [`schema()`](/docs/safe-action-client/instance-methods#schema), we're sure that data that comes in is type safe and validated.
5151
The [`action()`](/docs/safe-action-client/instance-methods#action) method lets you define what happens on the server when the action is called from client, via an async function that receives the parsed input and context as arguments. In short, this is your _server code_. **It never runs on the client**:
5252

5353
```typescript title="src/app/login-action.ts"

0 commit comments

Comments
 (0)
Please sign in to comment.