Skip to content

Commit

Permalink
https for Gateway
Browse files Browse the repository at this point in the history
  • Loading branch information
sirrenberg committed Mar 28, 2024
1 parent a6f839d commit 8973387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ContactForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function TextControlsExample() {
e.preventDefault();
setButtonText("Sending...");
try{
let response = await fetch("http://138.2.161.235/contact", {
let response = await fetch("https://138.2.161.235/contact", {
method: "POST",
headers: {"Content-Type": "application/json;charset=utf-8"},
body: JSON.stringify(formState),
Expand Down

0 comments on commit 8973387

Please sign in to comment.