fix: sider
diff --git a/erpnext/education/utils.py b/erpnext/education/utils.py
index 9d5653c..9db8a4a 100644
--- a/erpnext/education/utils.py
+++ b/erpnext/education/utils.py
@@ -245,7 +245,7 @@
 	return {
 		'questions': questions,
 		'activity': {'is_complete': status, 'score': score, 'result': result, 'time_taken': time_taken},
-			'is_time_bound': quiz.is_time_bound,
+		'is_time_bound': quiz.is_time_bound,
 		'duration': quiz.duration
 	}
 
diff --git a/erpnext/public/js/education/lms/quiz.js b/erpnext/public/js/education/lms/quiz.js
index 5bb8425..66160a7 100644
--- a/erpnext/public/js/education/lms/quiz.js
+++ b/erpnext/public/js/education/lms/quiz.js
@@ -21,7 +21,7 @@
 
 	make(data) {
 		if (data.is_time_bound) {
-			$(".lms-timer").removeClass("hide")
+			$(".lms-timer").removeClass("hide");
 			if (!data.activity || (data.activity && !data.activity.is_complete)) {
 				this.initialiseTimer(data.duration);
 				this.is_time_bound = true;