diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 21443632..10cf9b51 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -723,8 +723,7 @@ "PHONE_NUMBER": "Phone Number", "MENTOR_ID": "Mentor ID", "GENDER": "Gender", - "AGE": "Age", - "N/A": "-" + "AGE": "Age" }, "YOUTHNET_CAMP_DETAILS": { "SUBMISSION": "Submission", diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json index 89484fa2..f0765cdb 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -699,8 +699,7 @@ "PHONE_NUMBER": "फोन नंबर", "MENTOR_ID": "मेंटोर आईडी", "GENDER": "लिंग", - "AGE": "आयु", - "N/A": "-" + "AGE": "आयु" }, "YOUTHNET_CAMP_DETAILS": { diff --git a/public/locales/mr/common.json b/public/locales/mr/common.json index 8ab2ed77..e6401e69 100644 --- a/public/locales/mr/common.json +++ b/public/locales/mr/common.json @@ -693,8 +693,7 @@ "PHONE_NUMBER": "फोन नंबर", "MENTOR_ID": "मेंटर आयडी", "GENDER": "लिंग", - "AGE": "वय", - "N/A": "-" + "AGE": "वय" }, "YOUTHNET_VOLUNTEERLIST": { diff --git a/src/components/youthNet/Profile.tsx b/src/components/youthNet/Profile.tsx index fc74a2b5..ebb5d345 100644 --- a/src/components/youthNet/Profile.tsx +++ b/src/components/youthNet/Profile.tsx @@ -53,7 +53,7 @@ const Profile: React.FC = ({ sx={{ fontSize: '16px', fontWeight: 400 }} gutterBottom > - {fullName || t('YOUTHNET_PROFILE.N/A')} + {fullName} = ({ sx={{ fontSize: '16px', fontWeight: 400 }} gutterBottom > - {emailId || t('YOUTHNET_PROFILE.N/A')} + {emailId} = ({ sx={{ fontSize: '16px', fontWeight: 400 }} gutterBottom > - {state || t('YOUTHNET_PROFILE.N/A')},{' '} - {district || t('YOUTHNET_PROFILE.N/A')},{' '} - {block || t('YOUTHNET_PROFILE.N/A')} + {state}, {district}, {block} @@ -98,7 +96,7 @@ const Profile: React.FC = ({ color={theme.palette.warning['A200']} sx={{ fontSize: '16px', fontWeight: 400 }} > - {designation || t('YOUTHNET_PROFILE.N/A')} + {designation} @@ -112,7 +110,7 @@ const Profile: React.FC = ({ color={theme.palette.warning['A200']} sx={{ fontSize: '16px', fontWeight: 400 }} > - {joinedOn || t('YOUTHNET_PROFILE.N/A')} + {joinedOn} @@ -129,7 +127,7 @@ const Profile: React.FC = ({ color={theme.palette.warning['A200']} sx={{ fontSize: '16px', fontWeight: 400 }} > - {phoneNumber || t('YOUTHNET_PROFILE.N/A')} + {phoneNumber} @@ -143,7 +141,7 @@ const Profile: React.FC = ({ color={theme.palette.warning['A200']} sx={{ fontSize: '16px', fontWeight: 400 }} > - {mentorId || t('YOUTHNET_PROFILE.N/A')} + {mentorId} @@ -157,7 +155,7 @@ const Profile: React.FC = ({ {t('YOUTHNET_PROFILE.GENDER')} - {gender || t('YOUTHNET_PROFILE.N/A')} + {gender} @@ -168,7 +166,7 @@ const Profile: React.FC = ({ {t('YOUTHNET_PROFILE.AGE')} - {age || t('YOUTHNET_PROFILE.N/A')} + {age}