fix business industries and data settings front end

This commit is contained in:
arifal hidayat
2025-02-22 16:08:59 +07:00
parent 675477c734
commit ffd9d3514c
11 changed files with 171 additions and 327 deletions

View File

@@ -24,10 +24,9 @@ document.addEventListener("DOMContentLoaded", function (e) {
method: "POST",
credentials: "include",
headers: {
"X-CSRF-TOKEN": document
.querySelector('meta[name="csrf-token"]')
.getAttribute("content"),
"Content-Type": "application/json",
Authorization: `Bearer ${document
.querySelector('meta[name="api-token"]')
.getAttribute("content")}`,
},
body: formData,
});
@@ -35,7 +34,7 @@ document.addEventListener("DOMContentLoaded", function (e) {
if (response.ok) {
let result = await response.json();
document.getElementById("toast-message").innerText =
result.message;
result.data.message;
toast.show();
setTimeout(() => {
window.location.href = "/data-settings";