From 31b07ce03b4bd93361b426688e74736c8ec89a84 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Mon, 19 Jan 2026 00:26:48 -0800 Subject: [PATCH] fix: allow interactive in review challenges, require that or description (#65246) --- curriculum/schema/challenge-schema.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/curriculum/schema/challenge-schema.js b/curriculum/schema/challenge-schema.js index 40cf121cc4d..8b49f0e00b5 100644 --- a/curriculum/schema/challenge-schema.js +++ b/curriculum/schema/challenge-schema.js @@ -174,7 +174,8 @@ const schema = Joi.object().keys({ challengeTypes.step, challengeTypes.video, challengeTypes.multipleChoice, - challengeTypes.fillInTheBlank + challengeTypes.fillInTheBlank, + challengeTypes.review ], then: Joi.string().allow(''), otherwise: Joi.string().required()