Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
amerharb committed Dec 15, 2023
1 parent c7c9b8f commit 32bbccd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/utils/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand All @@ -28,7 +29,6 @@ const configSchema = z.object({
}),
})
),
baseBranch: z.optional(z.string()),
});

export default class LyraConfig {
Expand Down

0 comments on commit 32bbccd

Please sign in to comment.