diff --git a/service/auth.ts b/service/auth.ts index ac094adb..f7c81885 100644 --- a/service/auth.ts +++ b/service/auth.ts @@ -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) {