From 49194160369c41038f4f4e8b2ef000ca6d4c77c1 Mon Sep 17 00:00:00 2001 From: Apteryx Date: Sun, 20 Oct 2024 18:38:08 +1300 Subject: [PATCH] chore: correct docs issue --- website/content/getting-started/basic-setup.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] })