Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
learyjk committed Jan 10, 2025
1 parent 042f0e7 commit 08df8cb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
4 changes: 0 additions & 4 deletions src/components/mc-quiz/mc-quiz.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ export class MultipleChoiceQuiz {
this.incorrectWrapperElement = quizElement.children[2] as HTMLElement;
this.quizParentElement = quizElement.parentElement;

console.log(this.quizElement);

// Initialize the quiz
this.setup();
}
Expand Down Expand Up @@ -73,10 +71,8 @@ export class MultipleChoiceQuiz {
const oneIndexedSelectedAnswer = selectedAnswerIndex + 1;

if (oneIndexedSelectedAnswer === this.answer) {
console.log('Correct!');
this.showFeedback(true);
} else {
console.log('Incorrect!');
this.showFeedback(false);
}
}
Expand Down
18 changes: 0 additions & 18 deletions src/utils/greet.ts

This file was deleted.

0 comments on commit 08df8cb

Please sign in to comment.