diff --git a/src/commands/workspace/create.ts b/src/commands/workspace/create.ts index 3666ace..3a64b94 100644 --- a/src/commands/workspace/create.ts +++ b/src/commands/workspace/create.ts @@ -34,7 +34,7 @@ export const workspaceCreateCommand: Command = { 'By creating a workspace you accept the Polylane Terms of Service: https://console.polylane.com/terms\n', ); - const body: CreateWorkspaceBody = { name }; + const body: CreateWorkspaceBody = { name, acceptTerms: true }; if (description !== undefined) body.description = description; if (slug !== undefined) body.slug = slug;