File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ ensureConfig([
28
28
subscribe ( APP_CONFIG_INITIALIZED , ( ) => {
29
29
mergeConfig ( {
30
30
AUTHN_MINIMAL_HEADER : ! ! process . env . AUTHN_MINIMAL_HEADER ,
31
- SHOW_FULLNAME : process . env . SHOW_FULLNAME
31
+ SHOW_FULLNAME : process . env . SHOW_FULLNAME ,
32
32
} , 'Header additional config' ) ;
33
33
} ) ;
34
34
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { Dropdown } from '@openedx/paragon';
10
10
11
11
import messages from './messages' ;
12
12
13
- const AuthenticatedUserDropdown = ( { intl, username } ) => {
13
+ const AuthenticatedUserDropdown = ( { intl, name } ) => {
14
14
const dashboardMenuItem = (
15
15
< Dropdown . Item href = { `${ process . env . MARKETING_SITE_BASE_URL } /dashboard` } >
16
16
{ intl . formatMessage ( messages . dashboard ) }
@@ -33,7 +33,7 @@ const AuthenticatedUserDropdown = ({ intl, username }) => {
33
33
{ intl . formatMessage ( messages . profile ) }
34
34
</ Dropdown . Item >
35
35
< Dropdown . Item href = { getConfig ( ) . ACCOUNT_SETTINGS_URL } >
36
- { intl . formatMessage ( messages . account ) }
36
+ { intl . formatMessage ( messages . settings ) }
37
37
</ Dropdown . Item >
38
38
{ getConfig ( ) . ORDER_HISTORY_URL && (
39
39
< Dropdown . Item href = { getConfig ( ) . ORDER_HISTORY_URL } >
You can’t perform that action at this time.
0 commit comments