fix: correct typo in config validation comment

This commit is contained in:
MythEclipse
2026-05-18 00:31:45 +07:00
parent 51dc1f8869
commit f94009767b
+1 -1
View File
@@ -80,7 +80,7 @@ const configSchema = z
})
.superRefine((value, ctx) => {
if (!value.AI_ANALYSIS_ENABLED) {
// Continue to database validation
// Continue to database validationa
} else if (!value.AI_LLM_API_KEY) {
ctx.addIssue({
code: z.ZodIssueCode.custom,