@quesmed/types 1.3.8 → 1.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/utils/commonFunctions.js +0 -2
package/package.json
CHANGED
package/utils/commonFunctions.js
CHANGED
|
@@ -173,7 +173,6 @@ function correctMark(mark) {
|
|
|
173
173
|
}
|
|
174
174
|
}
|
|
175
175
|
else if (models_1.EQuestionType.PRESCRIPTION_ANSWER === mark.question.typeId) {
|
|
176
|
-
console.log('answers');
|
|
177
176
|
const answers = answer.map(formatPrescribeAnswer);
|
|
178
177
|
let attempt = formatPrescribeAnswer(mapPrescribeMarkToAnswer({
|
|
179
178
|
drug: '',
|
|
@@ -183,7 +182,6 @@ function correctMark(mark) {
|
|
|
183
182
|
frequency: '',
|
|
184
183
|
duration: '',
|
|
185
184
|
}));
|
|
186
|
-
console.log('attempt');
|
|
187
185
|
if (typeof flatAttempt === 'object' && Object.keys(flatAttempt).length === 6) {
|
|
188
186
|
attempt = formatPrescribeAnswer(mapPrescribeMarkToAnswer(flatAttempt));
|
|
189
187
|
}
|