Skip to content

Commit 85cc490

Browse files
committed
fix: migrate mautic url
1 parent 24634e6 commit 85cc490

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/Newsletter.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ const Newsletter: FC<NewsletterProps> = () => {
1717
var head = document.getElementsByTagName('head')[0];
1818
var script = document.createElement('script');
1919
script.type = 'text/javascript';
20-
script.src = 'https://mautic.int.ethswarm.org/index.php/media/js/mautic-form.js';
20+
script.src = 'https://mautic.ethswarm.org/index.php/media/js/mautic-form.js';
2121
script.onload = function() {
2222
MauticSDK.onLoad();
2323
};
2424
head.appendChild(script);
25-
var MauticDomain = 'https://mautic.int.ethswarm.org/index.php';
25+
var MauticDomain = 'https://mautic.ethswarm.org/index.php';
2626
var MauticLang = {
2727
'submittingMessage': "Please wait..."
2828
}
@@ -38,7 +38,7 @@ const Newsletter: FC<NewsletterProps> = () => {
3838
autoComplete="false"
3939
role="form"
4040
method="post"
41-
action="https://mautic.int.ethswarm.org/index.php/form/submit?formId=4"
41+
action="https://mautic.ethswarm.org/index.php/form/submit?formId=4"
4242
id="mauticform_websitenewslettersubscription"
4343
data-mautic-form="websitenewslettersubscription"
4444
encType="multipart/form-data"

0 commit comments

Comments
 (0)