fix: test formatting

This commit is contained in:
StevanFreeborn
2023-02-01 23:35:06 -06:00
parent ec0fe82df7
commit b4bd721aad
+1 -1
View File
@@ -96,7 +96,7 @@ export class OnspringClient {
* @returns {Promise<ApiResponse<T>>} - A promise that resolves to an ApiResponse of type T. * @returns {Promise<ApiResponse<T>>} - A promise that resolves to an ApiResponse of type T.
*/ */
private async get<T>(endpoint: string, config: AxiosRequestConfig = {}): Promise<ApiResponse<T>> { private async get<T>(endpoint: string, config: AxiosRequestConfig = {}): Promise<ApiResponse<T>> {
const response = await this._client.get(endpoint, config); const response = await this._client.get(endpoint, config);
const apiResponse = ApiResponseFactory.getApiResponse<T>(response); const apiResponse = ApiResponseFactory.getApiResponse<T>(response);
return apiResponse; return apiResponse;
} }