(wip) fix earlier breaking change (feedback in quizzes) by allowing custom feedback delims so that - doesn't need to conflict with markdown list item

This commit is contained in:
Adam Teichert
2025-12-17 15:10:59 -07:00
parent 3c6ba35bce
commit 1e3ff085f8
9 changed files with 217 additions and 29 deletions

View File

@@ -7,6 +7,7 @@ export const zodGlobalSettingsCourse = z.object({
export const zodGlobalSettings = z.object({
courses: z.array(zodGlobalSettingsCourse),
options: z.record(z.any()).optional(),
});