feat: fixing login error

This commit is contained in:
hanif salafi 2025-07-08 13:42:24 +07:00
parent bee5dcadb6
commit 1982679255
1 changed files with 1 additions and 5 deletions

View File

@ -10,11 +10,7 @@ import {
export async function login(data: any) {
const pathUrl = "signin";
const headers = {
accept: "application/json",
"content-type": "application/json",
};
return httpPost(pathUrl, headers, data);
return httpPost(pathUrl, data);
}
// export async function login(data: any, csrfToken: string) {