fix: test formatting

This commit is contained in:
StevanFreeborn
2023-02-01 23:39:07 -06:00
parent b4bd721aad
commit fcbe5fafd2
3 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ export class OnspringClient {
*/
private async get<T>(endpoint: string, config: AxiosRequestConfig = {}): Promise<ApiResponse<T>> {
const response = await this._client.get(endpoint, config);
const apiResponse = ApiResponseFactory.getApiResponse<T>(response);
const apiResponse = ApiResponseFactory.getApiResponse<T>(response);
return apiResponse;
}
}