Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
mono424 committed Sep 15, 2023
1 parent a50db12 commit 0da5f03
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions web/ts/edit-course.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ export function lectureEditor(lecture: Lecture): AlpineComponent {
},

addSection(section: VideoSection) {
console.log("PATCH A");
this.changeSet.patch(
"videoSections",
[
Expand All @@ -245,7 +244,6 @@ export function lectureEditor(lecture: Lecture): AlpineComponent {
},

updateSection(section: VideoSection) {
console.log("PATCH B");
const sectionKey = this.getSectionKey(section);
this.changeSet.patch(
"videoSections",
Expand All @@ -256,7 +254,6 @@ export function lectureEditor(lecture: Lecture): AlpineComponent {
},

deleteSection(section) {
console.log("PATCH C");
const sectionKey = this.getSectionKey(section);
this.changeSet.patch(
"videoSections",
Expand Down

0 comments on commit 0da5f03

Please sign in to comment.