From a2bcc848fc1a620db21d311ea5ae3548337bd647 Mon Sep 17 00:00:00 2001 From: Aarya Manchanda <99164788+aaryamanchanda@users.noreply.github.com> Date: Thu, 2 Apr 2026 18:40:03 +0530 Subject: [PATCH] fix: add missing empty line in decimal to binary step 35 (#66740) --- .../645b9d56b48971997a8055dd.md | 1 + 1 file changed, 1 insertion(+) diff --git a/curriculum/challenges/english/blocks/workshop-decimal-to-binary-converter/645b9d56b48971997a8055dd.md b/curriculum/challenges/english/blocks/workshop-decimal-to-binary-converter/645b9d56b48971997a8055dd.md index 2faa80f8b3a..a6927d4066c 100644 --- a/curriculum/challenges/english/blocks/workshop-decimal-to-binary-converter/645b9d56b48971997a8055dd.md +++ b/curriculum/challenges/english/blocks/workshop-decimal-to-binary-converter/645b9d56b48971997a8055dd.md @@ -202,6 +202,7 @@ const decimalToBinary = (input) => { --fcc-editable-region-- if (input === 0) { + } --fcc-editable-region--