diff --git a/src/app.js b/src/app.js
index 5adbec9..a42b80a 100644
--- a/src/app.js
+++ b/src/app.js
@@ -27,7 +27,6 @@ const elements = {
redoBtn: document.getElementById("redo-btn"),
resetCodeBtn: document.getElementById("reset-code-btn"),
hintArea: document.getElementById("hint-area"),
- validationIndicators: document.querySelector(".validation-indicators-container"),
editorContent: document.querySelector(".editor-content"),
codeEditor: document.querySelector(".code-editor"),
@@ -294,9 +293,6 @@ function loadCurrentLesson() {
codeEditor.setValue(engineState.userCode);
}
- // Reset validation indicators
- elements.validationIndicators.innerHTML = "";
-
// Update Run button text based on completion status
if (engineState.isCompleted) {
elements.runBtn.innerHTML = 'Re-run';
@@ -389,7 +385,6 @@ function resetCode() {
// Clear hints and success indicators
clearHint();
resetSuccessIndicators();
- elements.validationIndicators.innerHTML = "";
}
function runCode() {
@@ -408,12 +403,6 @@ function runCode() {
// Validate code using LessonEngine
const validationResult = lessonEngine.validateCode();
- // Update validation indicators
- if (validationResult.totalCases > 0) {
- const percent = Math.round((validationResult.validCases / validationResult.totalCases) * 100);
- elements.validationIndicators.innerHTML = `${percent}%`;
- }
-
if (validationResult.isValid) {
// Show success hint
showSuccessHint(validationResult.message || "Great job! Your code works correctly.");
diff --git a/src/index.html b/src/index.html
index dbc61e5..8a25ddb 100644
--- a/src/index.html
+++ b/src/index.html
@@ -47,7 +47,6 @@
-