diff --git a/ghost/signup-form/src/components/pages/FormView.tsx b/ghost/signup-form/src/components/pages/FormView.tsx index 2aa31d59b1..4cf682165c 100644 --- a/ghost/signup-form/src/components/pages/FormView.tsx +++ b/ghost/signup-form/src/components/pages/FormView.tsx @@ -20,9 +20,9 @@ export const FormView: React.FC - {logo && {title}} + {logo && {title}} {title &&

{title}

} - {description &&

{description}

} + {description &&

{description}

}
@@ -59,13 +59,13 @@ const Form: React.FC = ({loading, error, buttonColor, onSubmit}) => { onChange={e => setEmail(e.target.value)} /> - {error &&

{error}

} + {error &&

{error}

} ); diff --git a/ghost/signup-form/src/components/pages/SuccessView.tsx b/ghost/signup-form/src/components/pages/SuccessView.tsx index f7940e4f19..4f34fb81e6 100644 --- a/ghost/signup-form/src/components/pages/SuccessView.tsx +++ b/ghost/signup-form/src/components/pages/SuccessView.tsx @@ -4,8 +4,8 @@ import {textColorForBackgroundColor} from '@tryghost/color-utils'; export const SuccessView: React.FC<{ email: string; isMinimal: boolean; - title?: string - logo?: string + title?: string; + logo?: string; backgroundColor?: string; }> = ({isMinimal, title, logo, backgroundColor}) => { if (isMinimal) { @@ -21,9 +21,9 @@ export const SuccessView: React.FC<{ data-testid="success-page" style={{backgroundColor, color: backgroundColor && textColorForBackgroundColor(backgroundColor)}} > - {logo && {title}} + {logo && {title}}

Now check your email!

-

To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!

+

To complete signup, click the confirmation link in your inbox. If it doesn't arrive within 3 minutes, check your spam folder!

); };