Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/docs/pages/docs/validation-file-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ The `handler` object is the current CommandKit instance.
You may notice that the code above is returning `true`. This is important as it tells the command handler to not run any other validations and to not run the command. If you do not return `true` (or any truthy value), the command will run as normal.

<Callout type="warning">
Interactions (commands in this case) must be handled within 5 seconds, so make sure your
Interactions (commands in this case) must be handled within 3 seconds, so make sure your
validations are not using up much of that time. If you're using a database or an external API,
it's recommended to implement caching to keep things quick.
</Callout>