diff --git a/apps/portal/src/components/Notification.js b/apps/portal/src/components/Notification.js index 4d77c54de6..be0f5eb0bf 100644 --- a/apps/portal/src/components/Notification.js +++ b/apps/portal/src/components/Notification.js @@ -34,7 +34,7 @@ const NotificationText = ({type, status, context}) => { const firstname = context.member.firstname || ''; return (

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

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