From 00cf334788897d2145a6ca601276b5767fbc9b6c Mon Sep 17 00:00:00 2001 From: hexastack Date: Wed, 16 Apr 2025 11:33:01 +0100 Subject: [PATCH] fix: address feedback --- api/src/cms/dto/contentType.dto.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/cms/dto/contentType.dto.ts b/api/src/cms/dto/contentType.dto.ts index e099f2c6..be03e245 100644 --- a/api/src/cms/dto/contentType.dto.ts +++ b/api/src/cms/dto/contentType.dto.ts @@ -40,7 +40,7 @@ export class ContentField { message: "type must be one of the following values: 'text', 'url', 'textarea', 'checkbox', 'file', 'html'", }) - type: FieldType | `${FieldType}`; + type: `${FieldType}`; } export class ContentTypeCreateDto {