Skip to content

Commit 9e28ded

Browse files
committed
removed remaining debugging logs
1 parent 5c319f5 commit 9e28ded

File tree

3 files changed

+1
-14
lines changed

3 files changed

+1
-14
lines changed

frontend/src/features/admin-form/create/builder-and-design/BuilderAndDesignDrawer/FieldListDrawer/field-panels/MyInfoPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ export const MyInfoFieldPanel = ({ searchValue }: { searchValue: string }) => {
255255
({ fieldType, originalIndex }) => (
256256
<DraggableMyInfoFieldListOption
257257
index={originalIndex}
258-
// isDisabled={isDisabledCheck(fieldType)}
258+
isDisabled={isDisabledCheck(fieldType)}
259259
isDisabled={false}
260260
key={originalIndex}
261261
fieldType={fieldType}

src/app/modules/submission/encrypt-submission/encrypt-submission.middleware.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -421,17 +421,13 @@ export const validateStorageSubmission = async (
421421
.asyncAndThen(({ uinFin }) =>
422422
MyInfoService.fetchMyInfoHashes(uinFin, form._id)
423423
.andThen((hashes) => {
424-
console.log('hashes')
425-
console.log(hashes)
426424
return MyInfoService.checkMyInfoHashes(
427425
parsedResponses.responses,
428426
hashes,
429427
)
430428
})
431429
.map<IPopulatedStorageFormWithResponsesAndHash>(
432430
(hashedFields) => {
433-
console.log('hashedFields')
434-
console.log(hashedFields)
435431
return {
436432
hashedFields,
437433
parsedResponses,

src/app/services/mail/mail.service.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -795,15 +795,6 @@ export class MailService {
795795
>[]
796796
> => {
797797
// Data to render both the submission details mail HTML body and PDF.
798-
logger.info({
799-
message: `TESTING: Generating autoreply email for submission ${submission.id} of form ${form._id}`,
800-
meta: {
801-
action: 'sendAutoReplyEmails',
802-
formId: form._id,
803-
submissionId: submission.id,
804-
responseData: responsesData,
805-
},
806-
})
807798
const renderData: AutoreplySummaryRenderData = {
808799
refNo: submission.id,
809800
formTitle: form.title,

0 commit comments

Comments
 (0)