|
|
@@ -411,10 +411,10 @@ const UserInformationCard_Individual = ({ formData, loadDataFun }) => { |
|
|
|
: |
|
|
|
<Stack direction="row"> |
|
|
|
<Typography variant="h5" mt={1}> |
|
|
|
{formik.values.identification.slice(0, 4)} |
|
|
|
{formik.values.identification?.slice(0, 4)} |
|
|
|
</Typography> |
|
|
|
<Typography variant="h5" mt={1}> |
|
|
|
{showId ? formik.values.identification.slice(4) : "****"}{showId ? '(' + formik.values.checkDigit + ')' : null} |
|
|
|
{showId ? formik.values.identification?.slice(4) : "****"}{showId ? '(' + formik.values.checkDigit?formik.values.checkDigit:"" + ')' : ""} |
|
|
|
</Typography> |
|
|
|
<IconButton |
|
|
|
aria-label="toggle id visibility" |
|
|
|