add activity and priority list

This commit is contained in:
2024-04-16 16:03:10 +03:30
parent 0be35ececd
commit 23ff570697
8 changed files with 354 additions and 2 deletions

View File

@@ -184,7 +184,7 @@ const PlateNumber = ({formik, disabled}) => {
disabled={disabled}
fullWidth
>
{plate_words.find(p => p.value === formik.values.plate_part2).name}
{plate_words.find(p => p.value === formik.values.plate_part2)?.name}
</Button>
</Box>
<Drawer

View File

@@ -24,4 +24,8 @@ export const GET_OCCUPATIONS_LIST = BASE_URL + "/occupations";
export const GET_LOAN_DETAILS = BASE_URL + "/navgan/loan/details/"
export const UPDATE_LOAN = BASE_URL + "/navgan/loan/update/"
export const GET_PROJECT_TITLE = BASE_URL + "/navgan_plans"
export const GET_ACTIVITY_LIST = BASE_URL + "/activity_types"
export const GET_PRIORITY_LIST = BASE_URL + "/activity_priorities"