This commit is contained in:
Warunee Tamkoo 2025-02-10 22:06:49 +07:00
parent 10b0bb9997
commit 9c38122e4a

View file

@ -174,7 +174,7 @@ onMounted(async () => {
{
headers: {
"Content-Type": "application/json",
uid: uid,
Cookie: `uid=${uid};`,
},
withCredentials: true, // Include cookies with the request
}
@ -200,7 +200,7 @@ onMounted(async () => {
if (location.hostname == "hrms.chin.in.th") {
router.push("/sso");
} else {
window.location.href = `${config.API.URL_SSO}`;
// window.location.href = `${config.API.URL_SSO}`;
}
});