diff --git a/website/content/getting-started/basic-setup.mdx b/website/content/getting-started/basic-setup.mdx index ef167988..1b6057c2 100644 --- a/website/content/getting-started/basic-setup.mdx +++ b/website/content/getting-started/basic-setup.mdx @@ -89,7 +89,7 @@ import HelloCommand from './commands/hello' const handle = createHandle((env) => { const client = new Client( { ... }, - [HelloCommand] + [new HelloCommand()] ) return [client] })