diff --git a/kolibri/plugins/coach/assets/src/composables/useQuizCreation.js b/kolibri/plugins/coach/assets/src/composables/useQuizCreation.js
index 93523486f9c..d7fa42ccf89 100644
--- a/kolibri/plugins/coach/assets/src/composables/useQuizCreation.js
+++ b/kolibri/plugins/coach/assets/src/composables/useQuizCreation.js
@@ -31,7 +31,7 @@ function isExercise(o) {
/**
* Composable function presenting primary interface for Quiz Creation
*/
-export default function useQuizCreation(DEBUG = true) {
+export default function useQuizCreation(DEBUG = false) {
// -----------
// Local state
// -----------
diff --git a/kolibri/plugins/coach/assets/src/views/plan/CreateExamPage/CreateQuizSection.vue b/kolibri/plugins/coach/assets/src/views/plan/CreateExamPage/CreateQuizSection.vue
index 1c9b2094c0c..20bf72e48d1 100644
--- a/kolibri/plugins/coach/assets/src/views/plan/CreateExamPage/CreateQuizSection.vue
+++ b/kolibri/plugins/coach/assets/src/views/plan/CreateExamPage/CreateQuizSection.vue
@@ -78,37 +78,7 @@
:hasIcons="true"
:options="overflowTabs"
@select="opt => setActiveSection(opt.id)"
- >
-
-
-
-
- null"
- >
-
- handleSectionOptionSelect(opt, option.id)"
- />
-
-
-
-
+ />
@@ -135,7 +105,6 @@
@@ -572,19 +541,6 @@
handleDragStart() {
set(this.dragActive, true);
},
- handleSectionOptionSelect({ label }, section_id) {
- // Always set the active section to the one that is having its side panel opened
- this.setActiveSection(section_id);
-
- switch (label) {
- case this.editSectionLabel$():
- this.$router.replace({ path: 'new/' + section_id + '/edit' });
- break;
- case this.deleteSectionLabel$():
- this.removeSection(section_id);
- break;
- }
- },
openSelectResources(section_id) {
this.$router.replace({ path: 'new/' + section_id + '/select-resources' });
},