From 776ed1acccaec1cdc61b17ed5ad8bbf2fac3442c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Murat=20=C3=87orlu?= <127687+muratcorlu@users.noreply.github.com> Date: Tue, 13 Jan 2026 09:56:13 +0100 Subject: [PATCH] Fixed typo While searching something related with Signup flow, I noticed that typo (by making same typo in my search). Just a quick fix :) --- apps/portal/src/components/notification.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/portal/src/components/notification.js b/apps/portal/src/components/notification.js index 1b067d65954..1f7e49e3cbc 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')}
- {t('Signup error: Invalid link')}
{t('Click here to retry')}
+ {t('Signup error: Invalid link')}
{t('Click here to retry')}