CSR-110: remove debugging

This commit is contained in:
Adam Caouette 2022-08-26 11:45:35 -04:00
parent 924157cb80
commit bfce98d1e5
2 changed files with 1 additions and 4 deletions

View file

@ -40,9 +40,6 @@ export default {
// validate form upon create to prevent out of sync / persistent valid states
await useValidateForm(); // do a test validation check, without triggering full validation
console.log(" _ QC, START CREATE this.questionData: ", this.questionData)
this.questionData.map((q, i) => {
let answerPair = [];
const question = {

View file

@ -340,7 +340,7 @@ export default {
const thisPartsDupes = this.foundDuplicateQuestions["glass" + answer.glassIndex];
const completeAnsweredQuestions = answer.answeredQuestions ? [...answer.answeredQuestions] : [];
const glassPartAnswered = this.capabilityQuestionsData[answer.glassIndex];
debugger; // eslint-disable-line no-debugger
thisPartsDupes?.forEach((dupe) => {
// dupe is a single integer
const dupeQuestion = glassPartAnswered.capabilityQuestions[dupe - 1];