diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-12-17 17:07:44 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-12-17 17:07:44 +0700 |
| commit | dd8a56ad12d054e121965c41bcb077158690b208 (patch) | |
| tree | f49346100766651ca861f9793f68cfcb869c36f4 /src/lib/pengajuan-tempo/component/KontakPerusahaan.jsx | |
| parent | 92c6c99e3b65b1770b02c2fd63c9c943f99cfda2 (diff) | |
<iman> update code
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> |
