@@ -26,7 +26,7 @@ LinkedLogo.propTypes = {
2626} ;
2727
2828const LearningHeader = ( {
29- courseOrg , courseNumber , courseTitle, intl, showUserDropdown, userProfileImage,
29+ courseTitle, intl, showUserDropdown, userProfileImage,
3030} ) => {
3131 const { authenticatedUser } = useContext ( AppContext ) ;
3232
@@ -45,7 +45,6 @@ const LearningHeader = ({
4545 < div className = "container-xl d-flex align-items-center" >
4646 { headerLogo }
4747 < div className = "flex-grow-1 course-title-lockup" style = { { lineHeight : 1 } } >
48- < span className = "d-block small m-0" > { courseOrg } { courseNumber } </ span >
4948 < span className = "d-block m-0 font-weight-bold course-title" > { courseTitle } </ span >
5049 </ div >
5150 { showUserDropdown && authenticatedUser && (
@@ -63,17 +62,13 @@ const LearningHeader = ({
6362} ;
6463
6564LearningHeader . propTypes = {
66- courseOrg : PropTypes . string ,
67- courseNumber : PropTypes . string ,
6865 courseTitle : PropTypes . string ,
6966 userProfileImage : PropTypes . string ,
7067 intl : intlShape . isRequired ,
7168 showUserDropdown : PropTypes . bool ,
7269} ;
7370
7471LearningHeader . defaultProps = {
75- courseOrg : null ,
76- courseNumber : null ,
7772 courseTitle : null ,
7873 userProfileImage : null ,
7974 showUserDropdown : true ,
0 commit comments