diff --git a/src/app/api/settings/m18ImportTesting/actions.ts b/src/app/api/settings/m18ImportTesting/actions.ts index 0797b59..4a9bc80 100644 --- a/src/app/api/settings/m18ImportTesting/actions.ts +++ b/src/app/api/settings/m18ImportTesting/actions.ts @@ -66,11 +66,10 @@ export const testM18ImportPq = async (data: M18ImportPqForm) => { export const testM18ImportMasterData = async ( data: M18ImportMasterDataForm, ) => { - const token = localStorage.getItem("accessToken"); return serverFetchWithNoContent(`${BASE_API_URL}/m18/master-data`, { method: "POST", body: JSON.stringify(data), - headers: { "Content-Type": "application/json", "Authorization": `Bearer ${token}`, }, + headers: { "Content-Type": "application/json" }, }); };