File tree Expand file tree Collapse file tree 3 files changed +1
-14
lines changed
frontend/src/features/admin-form/create/builder-and-design/BuilderAndDesignDrawer/FieldListDrawer/field-panels
modules/submission/encrypt-submission Expand file tree Collapse file tree 3 files changed +1
-14
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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,
Original file line number Diff line number Diff 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 ,
You can’t perform that action at this time.
0 commit comments