From fe9d40a70bfe3b9674e48c2bbac4b7360efe3148 Mon Sep 17 00:00:00 2001 From: Jeevankumar S <110320697+Jeevankumar-s@users.noreply.github.com> Date: Thu, 12 Feb 2026 16:36:52 +0530 Subject: [PATCH] fix(curriculum): enforce powerSource initial state value in step 3 (#65666) --- .../680fc849a6f2be0a8597c593.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/workshop-superhero-application-form/680fc849a6f2be0a8597c593.md b/curriculum/challenges/english/blocks/workshop-superhero-application-form/680fc849a6f2be0a8597c593.md index 5c4904898e1..a33a69a0db2 100644 --- a/curriculum/challenges/english/blocks/workshop-superhero-application-form/680fc849a6f2be0a8597c593.md +++ b/curriculum/challenges/english/blocks/workshop-superhero-application-form/680fc849a6f2be0a8597c593.md @@ -38,7 +38,7 @@ Your `useState` hook for `powerSource` should have an initial value of empty str const _a = eval(script); const _b = await __helpers.prepTestComponent(exports.SuperheroForm); - assert.equal(abuseState.calls[2]?.[0], ""); + assert.strictEqual(abuseState.calls[2]?.[0], ""); ``` You should use array destructuring to set a `powers` state variable and a `setPowers` setter.