TP-60261 | API ErrorTag | SI Event | Status Bar | Unnecessary Log (#10265)

This commit is contained in:
Prajjaval Verma
2024-04-01 18:40:47 +05:30
committed by GitHub
parent 680e32f9ca
commit 36c65dd1d2
17 changed files with 145 additions and 52 deletions

View File

@@ -43,8 +43,6 @@ export const post = async <T>(
timeout: 10000,
headers: requestConfig.headers
})
console.log("HeaderDataApiClient:", requestConfig?.headers)
console.log("ApiUrl:", BASE_URL + url)
const response = await axiosInstance.post<T>(baseUrl + url, data, requestConfig);
return handleSuccess<T>(response);
} catch (error) {