From 16b4cae21e3258b942b4c72930492d81771c575b Mon Sep 17 00:00:00 2001 From: Mawoka Date: Tue, 4 Oct 2022 16:47:00 +0200 Subject: [PATCH] :rotating_light: Fixed linter errors (removed console.log's) --- frontend/src/lib/yupSchemas.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/frontend/src/lib/yupSchemas.ts b/frontend/src/lib/yupSchemas.ts index 31111dd..3f81e4a 100644 --- a/frontend/src/lib/yupSchemas.ts +++ b/frontend/src/lib/yupSchemas.ts @@ -63,12 +63,9 @@ export const dataSchema = yup.object({ .lowercase(), answers: yup.lazy((v) => { if (Array.isArray(v)) { - console.log(v); if (typeof v[0].right === 'boolean') { - console.log('Yup, ABCD'); return ABCDQuestionSchema; } else { - console.log('Yup, Poll'); return VotingQuestionSchema; } } else {