diff options
Diffstat (limited to 'src/lib/pengajuan-tempo/component/KontakPerusahaan.jsx')
| -rw-r--r-- | src/lib/pengajuan-tempo/component/KontakPerusahaan.jsx | 36 |
1 files changed, 24 insertions, 12 deletions
diff --git a/src/lib/pengajuan-tempo/component/KontakPerusahaan.jsx b/src/lib/pengajuan-tempo/component/KontakPerusahaan.jsx index b3d5bce7..e937baec 100644 --- a/src/lib/pengajuan-tempo/component/KontakPerusahaan.jsx +++ b/src/lib/pengajuan-tempo/component/KontakPerusahaan.jsx @@ -130,9 +130,12 @@ const KontakPerusahaan = ({ chekValid, buttonSubmitClick, isKonfirmasi }) => { /> </div> {chekValid && ( - <div className='text-caption-2 text-danger-500 mt-1'> - {errorsKontakPerson.direkturName} - </div> + <> + <div className='text-caption-2 text-danger-500 mt-1'> + {errorsKontakPerson.direkturName}{' '} + {errorsKontakPerson.direkturTittle} + </div> + </> )} </div> </div> @@ -230,9 +233,12 @@ const KontakPerusahaan = ({ chekValid, buttonSubmitClick, isKonfirmasi }) => { /> </div> {chekValid && ( - <div className='text-caption-2 text-danger-500 mt-1'> - {errorsKontakPerson.purchasingName} - </div> + <> + <div className='text-caption-2 text-danger-500 mt-1'> + {errorsKontakPerson.purchasingName}{' '} + {errorsKontakPerson.purchasingTittle} + </div> + </> )} </div> </div> @@ -339,9 +345,12 @@ const KontakPerusahaan = ({ chekValid, buttonSubmitClick, isKonfirmasi }) => { /> </div> {chekValid && ( - <div className='text-caption-2 text-danger-500 mt-1'> - {errorsKontakPerson.financeName} - </div> + <> + <div className='text-caption-2 text-danger-500 mt-1'> + {errorsKontakPerson.financeName}{' '} + {errorsKontakPerson.financeTittle} + </div> + </> )} </div> </div> @@ -454,7 +463,8 @@ const KontakPerusahaan = ({ chekValid, buttonSubmitClick, isKonfirmasi }) => { </div> {chekValid && ( <div className='text-caption-2 text-danger-500 mt-1'> - {errorsKontakPerson.direkturName} + {errorsKontakPerson.direkturName}{' '} + {errorsKontakPerson.direkturTittle} </div> )} </div> @@ -536,7 +546,8 @@ const KontakPerusahaan = ({ chekValid, buttonSubmitClick, isKonfirmasi }) => { </div> {chekValid && ( <div className='text-caption-2 text-danger-500 mt-1'> - {errorsKontakPerson.purchasingName} + {errorsKontakPerson.purchasingName}{' '} + {errorsKontakPerson.purchasingTittle} </div> )} </div> @@ -615,7 +626,8 @@ const KontakPerusahaan = ({ chekValid, buttonSubmitClick, isKonfirmasi }) => { </div> {chekValid && ( <div className='text-caption-2 text-danger-500 mt-1'> - {errorsKontakPerson.financeName} + {errorsKontakPerson.financeName}{' '} + {errorsKontakPerson.financeTittle} </div> )} </div> |
