Initial implementation of Import page, project cleanup

This commit is contained in:
2026-01-02 23:08:26 +05:00
parent 05814a100a
commit 885aab0d9d
8 changed files with 107 additions and 60 deletions

View File

@ -6,7 +6,6 @@ export const axiosInstance = <T>(
options?: AxiosRequestConfig,
): Promise<AxiosResponse<T, any>> => {
const baseURL = useRuntimeConfig().public.apiBaseUrl;
console.log(baseURL)
const source = Axios.CancelToken.source();
const promise = AXIOS_INSTANCE({
...config,