diff --git a/ghost/portal/src/components/common/NewsletterManagement.js b/ghost/portal/src/components/common/NewsletterManagement.js index d876117c80..cf8f12c767 100644 --- a/ghost/portal/src/components/common/NewsletterManagement.js +++ b/ghost/portal/src/components/common/NewsletterManagement.js @@ -110,6 +110,7 @@ function ShowPaidMemberMessage({site, isPaid}) { } export default function NewsletterManagement({ + notification, subscribedNewsletters, updateSubscribedNewsletters, unsubscribeAll, @@ -117,10 +118,15 @@ export default function NewsletterManagement({ }) { const isDisabled = !subscribedNewsletters?.length; const {brandColor, site} = useContext(AppContext); + const EmptyNotification = () => { + return null; + }; + const FinalNotification = notification || EmptyNotification; return (
{member?.email} will no longer receive {unsubscribedNewsletter?.name} newsletter.
+ ); + }; + return (