Skip to content

Commit

Permalink
fix: remove username and bring in name field for embedded case (#1163)
Browse files Browse the repository at this point in the history
Description:
Remove username and bring in name field in case embedded registration
VAN-1824
  • Loading branch information
ahtesham-quraish authored Feb 14, 2024
1 parent dc266a6 commit e3d9638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/progressive-profiling/ProgressiveProfiling.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ const ProgressiveProfiling = (props) => {
});

return (
<BaseContainer showWelcomeBanner fullName={authenticatedUser?.fullName || authenticatedUser?.username}>
<BaseContainer showWelcomeBanner fullName={authenticatedUser?.fullName || authenticatedUser?.name}>
<Helmet>
<title>{formatMessage(messages['progressive.profiling.page.title'],
{ siteName: getConfig().SITE_NAME })}
Expand Down

0 comments on commit e3d9638

Please sign in to comment.