From f47c7c5a07ce353ee5f8a436e51798f9dffd4477 Mon Sep 17 00:00:00 2001 From: Frank Date: Mon, 6 Oct 2025 17:17:02 -0400 Subject: [PATCH] wip: zen --- packages/console/core/src/workspace.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/console/core/src/workspace.ts b/packages/console/core/src/workspace.ts index f9591632..32f5bd36 100644 --- a/packages/console/core/src/workspace.ts +++ b/packages/console/core/src/workspace.ts @@ -12,7 +12,7 @@ import { eq } from "drizzle-orm" export namespace Workspace { export const create = fn( z.object({ - name: z.string(), + name: z.string().min(1), }), async ({ name }) => { const account = Actor.assert("account")