diff --git a/ghost/portal/src/components/Notification.js b/ghost/portal/src/components/Notification.js index 0d14662b688..9cfab09f5d0 100644 --- a/ghost/portal/src/components/Notification.js +++ b/ghost/portal/src/components/Notification.js @@ -29,10 +29,11 @@ const Styles = () => { const NotificationText = ({type, status, context}) => { const signinPortalLink = getPortalLink({page: 'signin', siteUrl: context.site.url}); const singupPortalLink = getPortalLink({page: 'signup', siteUrl: context.site.url}); + const firstname = context.member.firstname; if (type === 'signin' && status === 'success') { return (

- Welcome back!
You've successfully signed in. + Welcome back{(firstname ? ', ' + firstname : '')}!
You've successfully signed in.

); } else if (type === 'signin' && status === 'error') {