change endpoint

This commit is contained in:
Jesse Winton
2025-03-10 11:02:43 -04:00
parent 01ae2e2258
commit 4b4faaa244

View File

@@ -28,7 +28,7 @@
const cloudEmail = loggedIn && $user?.email ? $user.email : undefined; const cloudEmail = loggedIn && $user?.email ? $user.email : undefined;
const response = await fetch(`${PUBLIC_GROWTH_ENDPOINT}/feedback/sales`, { const response = await fetch(`${PUBLIC_GROWTH_ENDPOINT}/feedback/sales/enterprise`, {
method: 'POST', method: 'POST',
headers: { headers: {
'Content-Type': 'application/json' 'Content-Type': 'application/json'
@@ -42,7 +42,6 @@
companyWebsite, companyWebsite,
firstName, firstName,
lastName, lastName,
program: 'Enterprise',
message: useCase, message: useCase,
...getReferrerAndUtmSource() ...getReferrerAndUtmSource()
}) })