Skip to content

Commit 633401b

Browse files
authored
Merge pull request layer5io#4976 from layer5io/webhook-sep
2 parents 3e432c1 + 734bd9f commit 633401b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/components/CommonForm/events.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const EventForm = ({ form, title, submit_title, submit_body }) => {
2323

2424
useEffect(() => {
2525
if (submit) {
26-
axios.post("https://hook.us1.make.com/x4crqi16j8wfhctosk8y47fj6gknyvvh", {
26+
axios.post("https://hook.us1.make.com/s4jo47a8ydq6uk7gg16wuukgr4l52p8c", {
2727
memberFormOne,
2828
});
2929
}

src/components/CommonForm/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const CommonForm = ({ form, title, submit_title, submit_body }) => {
7373
};
7474
useEffect(() => {
7575
if (submit) {
76-
axios.post("https://hook.us1.make.com/x4crqi16j8wfhctosk8y47fj6gknyvvh", {
76+
axios.post("https://hook.us1.make.com/s4jo47a8ydq6uk7gg16wuukgr4l52p8c", {
7777
memberFormOne,
7878
});
7979
}

src/components/ContactForm/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const ContactForm = () => {
1212
useEffect(() => {
1313
if (submit) {
1414
// Webhook to handle all event forms and all signup forms, except for the community member form.
15-
axios.post("https://hook.us1.make.com/x4crqi16j8wfhctosk8y47fj6gknyvvh", {
15+
axios.post("https://hook.us1.make.com/s4jo47a8ydq6uk7gg16wuukgr4l52p8c", {
1616
memberFormOne,
1717
});
1818
window.scrollTo(0, 700);

src/sections/Community/Handbook/writing-program/content-form.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const ContentForm = () => {
2424

2525
useEffect(() => {
2626
if (submit) {
27-
axios.post("https://hook.us1.make.com/x4crqi16j8wfhctosk8y47fj6gknyvvh", {
27+
axios.post("https://hook.us1.make.com/s4jo47a8ydq6uk7gg16wuukgr4l52p8c", {
2828
memberFormOne,
2929
});
3030
}

0 commit comments

Comments
 (0)