- added CTS Logo

- updated npm packages like vue-facing-decorator and some prettier and eslint dev dependecies
- remove node-polyfill-webpack-plugin
This commit is contained in:
Kaimbacher 2024-03-16 16:42:25 +01:00
parent 6f63db4a71
commit a85debca92
13 changed files with 1685 additions and 2415 deletions

View file

@ -8,6 +8,7 @@ import { AxiosResponse } from "axios";
const axiosInstance = initializeAxios(axiosRequestConfiguration);
// eslint-disable-next-line
const get = <T>(url: string, queryParams?: any): Observable<T> => {
return defer(() => axiosInstance.get<T>(url, { params: queryParams })).pipe(map((result: AxiosResponse) => result.data));
};