Skip to content

Commit fe7cebf

Browse files
committed
Add Mailchimp subscribe disclaimer
1 parent 9f91ef7 commit fe7cebf

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

integrations/mailchimp/src/index.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ type MailchimpAction =
3939
| { action: '@ui.modal.close'; listId?: string; cta?: string };
4040

4141
const DEFAULT_CTA = 'Sign up to our mailing list to receive updates!';
42+
const DEFAULT_DISCLAIMER =
43+
'By clicking Subscribe, you agree to the processing of your email address in accordance with our privacy policy.';
4244

4345
/**
4446
* A Block to subscribe to a Mailchimp mailing list.
@@ -151,6 +153,11 @@ const mailchimpSubscribe = createComponent<
151153
/>
152154
</box>
153155
</hstack>
156+
<box>
157+
<text size="small" muted>
158+
{DEFAULT_DISCLAIMER}
159+
</text>
160+
</box>
154161
{typeof success === 'boolean' && success === false ? (
155162
<box>
156163
<text>An error occured, the site owner has been notified</text>

0 commit comments

Comments
 (0)