Update API endpoints to production URLs
Changed the API endpoints in contact and verify email forms from localhost URLs to the production server. This ensures that the forms submit data to the correct, live endpoints.
This commit is contained in:
@@ -42,7 +42,7 @@ const VerifyMail: FC = () => {
|
||||
eMail: email
|
||||
}
|
||||
console.log(verificationData);
|
||||
fetch('http://localhost:8002/api/verify_email/form', {
|
||||
fetch('https://forms.alttd.com/api/verify_email/form', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
|
||||
Reference in New Issue
Block a user