From fcc4c3374d85b33755f852bcc559db0a8eb5115a Mon Sep 17 00:00:00 2001 From: Blaster4385 Date: Thu, 25 Aug 2022 11:44:08 +0530 Subject: Misc changes and add more translation --- client/src/pages/Enrollment/Address/Address.jsx | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) (limited to 'client/src/pages/Enrollment/Address') diff --git a/client/src/pages/Enrollment/Address/Address.jsx b/client/src/pages/Enrollment/Address/Address.jsx index 78b0737..fc27448 100644 --- a/client/src/pages/Enrollment/Address/Address.jsx +++ b/client/src/pages/Enrollment/Address/Address.jsx @@ -45,25 +45,18 @@ const Address = () => { }) } + const description = ['ENTER_YOUR_DETAILS_ACCORDING_TO_THE_RELEVANT_FIELDS', 'SELECT_THE_STATE_YOU_BELONG_TO_FROM_THE_DROPDOWN_LIST', 'SELECT_THE_DISTRICT_YOU_BELONG_TO_FROM_THE_DROPDOWN_LIST'] + return ( <>
    -
  • - Enter your details according to the relevant fields -
  • -
  • - State: Select the state you belong to. from the dropdown list -
  • -
  • - District: Select the district you belong to. from the dropdown - list -
  • + {description.map((item) => (
  • {t(item)}
  • ))}
} -- cgit