fix: test formatting

This commit is contained in:
StevanFreeborn
2023-02-01 23:41:04 -06:00
parent fcbe5fafd2
commit 396d8aecab
+1 -1
View File
@@ -98,6 +98,6 @@ 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);
return apiResponse;
return apiResponse;
}
}