From 9b0dba7f654689e6e76f53581591a05dba16e12c Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> Date: Mon, 11 Dec 2023 12:10:10 +0000 Subject: [PATCH] Update account.html #515 fix --- src/main/resources/templates/account.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/templates/account.html b/src/main/resources/templates/account.html index 3111c1f0..83303057 100644 --- a/src/main/resources/templates/account.html +++ b/src/main/resources/templates/account.html @@ -275,7 +275,7 @@ document.getElementById('syncToAccount').addEventListener('click', function() { let form = document.createElement("form"); form.method = "POST"; - form.action = "/updateUserSettings"; // Your endpoint URL + form.action = "api/v1/user/updateUserSettings"; // Your endpoint URL for (let i = 0; i < localStorage.length; i++) { const key = localStorage.key(i);