diff --git a/src/screens/Pscyometric/QuestionScreen.tsx b/src/screens/Pscyometric/QuestionScreen.tsx index b8b7740..c4cad8b 100644 --- a/src/screens/Pscyometric/QuestionScreen.tsx +++ b/src/screens/Pscyometric/QuestionScreen.tsx @@ -29,6 +29,9 @@ class QuestionScreen extends React.Component{ } async componentDidMount() { + const { navigation, route } = this.props; + const title = 'Psychometric Questions'; + navigation.setOptions({ title }); this.getCurrentAcademicYearData() //fetch the Current Academic year from Login Response this.token = await AsyncStorage.getItem('token') const userInfo = await AsyncStorage.getItem('userInfo') diff --git a/src/screens/Student/StudentProfile.tsx b/src/screens/Student/StudentProfile.tsx index a7bfd04..fcb26e1 100644 --- a/src/screens/Student/StudentProfile.tsx +++ b/src/screens/Student/StudentProfile.tsx @@ -336,7 +336,6 @@ 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}% diff --git a/src/theme/BaseStyles.tsx b/src/theme/BaseStyles.tsx index af2df92..f3ded25 100644 --- a/src/theme/BaseStyles.tsx +++ b/src/theme/BaseStyles.tsx @@ -409,7 +409,7 @@ export const AppStyles = StyleSheet.create({ alignItems: "center", flex:1 }, - subjectLink:{padding:5,backgroundColor:"#8D81F8",color:"white",borderRadius:50}, + subjectLink:{padding:5,backgroundColor:"#8D81F8",color:"white",borderRadius:20}, container: { backgroundColor: '#f5f6fa',