fix: correct app.use()

This commit is contained in:
Derek L. Seitz 2025-08-21 18:16:09 -05:00
parent f0fae1d559
commit 4f3a256158
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ form.addEventListener("submit", function(event) {
};
// Send the data to the backend using fetch()
fetch('/submit-form', {
fetch('api/submit-form', {
method: 'POST',
headers: {
'Content-Type': 'application/json',