diff --git a/apps/portal/src/components/notification.js b/apps/portal/src/components/notification.js index af02c89dfa5..3ff5938b4c7 100644 --- a/apps/portal/src/components/notification.js +++ b/apps/portal/src/components/notification.js @@ -28,7 +28,7 @@ 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 signupPortalLink = getPortalLink({page: 'signup', siteUrl: context.site.url}); if (type === 'signin' && status === 'success' && context.member) { const firstname = context.member.firstname || ''; @@ -70,13 +70,13 @@ const NotificationText = ({type, status, context}) => { } else if (type === 'signup' && status === 'error') { return (

- {t('Signup error: Invalid link')}
{t('Click here to retry')} + {t('Signup error: Invalid link')}
{t('Click here to retry')}

); } else if (type === 'signup-paid' && status === 'error') { return (

- {t('Signup error: Invalid link')}
{t('Click here to retry')} + {t('Signup error: Invalid link')}
{t('Click here to retry')}

); } else if (type === 'stripe:checkout' && status === 'success') {