diff --git a/src/api/license.api.tsx b/src/api/license.api.tsx index 05c32ac..e8fb982 100644 --- a/src/api/license.api.tsx +++ b/src/api/license.api.tsx @@ -29,8 +29,7 @@ export const getMenuList = async ({token, academic_year, app_type}: any) => { method: 'GET', headers: { 'Content-Type': apiConfig.contentTypeJSON } } - const url = `${Constants.easConfig.extra.LICENSE_BASE_URL + SCHOOL_LIST_API.GET_LICENSE_SCHOOLS}` - + const url = `${Constants.easConfig.extra.LICENSE_BASE_URL + SCHOOL_LIST_API.GET_LICENSE_SCHOOLS}/` return fetchAPI(url, requestOptions) } diff --git a/src/api/questionbank.api.tsx b/src/api/questionbank.api.tsx index 3744e24..8bd8c2d 100644 --- a/src/api/questionbank.api.tsx +++ b/src/api/questionbank.api.tsx @@ -111,7 +111,7 @@ export const getBlueprintDifficultyLevelDropdown = async ({token}: any) => { method: 'GET', headers: { 'Content-Type': apiConfig.contentTypeJSON, 'Authorization': token }, } - const url = `${QUESTION_BANK_API.GET_BLUEPRINT_DIFFICULTY_LEVEL_DROPDOWN}` + const url = `${QUESTION_BANK_API.GET_BLUEPRINT_DIFFICULTY_LEVEL_DROPDOWN}/` return fetchAppBase(url, requestOptions) } diff --git a/src/screens/Student/StudentProfile.tsx b/src/screens/Student/StudentProfile.tsx index 3df955a..a7bfd04 100644 --- a/src/screens/Student/StudentProfile.tsx +++ b/src/screens/Student/StudentProfile.tsx @@ -336,7 +336,11 @@ class StudentProfile extends React.Component{ {classBasedTopic?.graph_data && classBasedTopic?.graph_data.map((topicItem: any, topicIndex: any) => ( - {topicItem?.topics} {topicItem?.question_performance}% + {/* {topicItem?.topics} {topicItem?.question_performance}% */} + + {topicItem?.topics} + {topicItem?.question_performance}% + ))} diff --git a/src/screens/class/classCreate.tsx b/src/screens/class/classCreate.tsx index 37175c0..5d338ef 100644 --- a/src/screens/class/classCreate.tsx +++ b/src/screens/class/classCreate.tsx @@ -188,7 +188,7 @@ class ClassCreate extends React.Component{ - Add diff --git a/src/theme/BaseStyles.tsx b/src/theme/BaseStyles.tsx index 679f395..af2df92 100644 --- a/src/theme/BaseStyles.tsx +++ b/src/theme/BaseStyles.tsx @@ -404,7 +404,10 @@ export const AppStyles = StyleSheet.create({ width: 80, height: 80, flexBasis: 80, - flexGrow: 1 + flexGrow: 1, + justifyContent: "space-between", + alignItems: "center", + flex:1 }, subjectLink:{padding:5,backgroundColor:"#8D81F8",color:"white",borderRadius:50},