From cc51d3766a2c03c13f26aa6eef91c1536e9b4549 Mon Sep 17 00:00:00 2001 From: NurAlan Date: Mon, 9 Feb 2026 11:02:03 +0700 Subject: [PATCH] fix: command type --- src/modules/topics/schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/topics/schema.ts b/src/modules/topics/schema.ts index b03ac70..e159e23 100644 --- a/src/modules/topics/schema.ts +++ b/src/modules/topics/schema.ts @@ -2,7 +2,7 @@ import { z } from 'zod' export const postDeleteTopic = z.object({ topic: z.string(), - type: z.enum(['state-reply', 'commands']), + type: z.enum(['state-reply', 'command']), }) export type PostDeletetopic = z.infer