Skip to content

Commit

Permalink
PWA-1239 Fixing default message for account chip when language pack i…
Browse files Browse the repository at this point in the history
…sn't installed (#3286)

Co-authored-by: James Calcaben <jcalcaben@users.noreply.github.com>
  • Loading branch information
justinconabree and jcalcaben committed Jul 22, 2021
1 parent f5cdde7 commit 57bc625
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const AccountChip = props => {
} else {
if (!isLoadingUserName) {
chipText = formatMessage(
{ id: 'accountChip.chipText', defaultMessage: 'Hi' },
{ id: 'accountChip.chipText', defaultMessage: 'Hi, {name}' },
{ name: currentUser.firstname }
);
} else if (shouldIndicateLoading) {
Expand Down

0 comments on commit 57bc625

Please sign in to comment.