From 32bbccd62ce87a337d17fcbfc97130822dae292b Mon Sep 17 00:00:00 2001 From: Amer Harb Date: Fri, 15 Dec 2023 21:44:31 +0100 Subject: [PATCH] lint --- webapp/src/utils/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/utils/config.ts b/webapp/src/utils/config.ts index ded7629e..3e6ead5c 100644 --- a/webapp/src/utils/config.ts +++ b/webapp/src/utils/config.ts @@ -16,6 +16,7 @@ const KIND_BY_FORMAT_VALUE: Record<'ts' | 'yaml', MessageKind> = { }; const configSchema = z.object({ + baseBranch: z.optional(z.string()), projects: z.array( z.object({ messages: z.object({ @@ -28,7 +29,6 @@ const configSchema = z.object({ }), }) ), - baseBranch: z.optional(z.string()), }); export default class LyraConfig {