Skip to content

Commit

Permalink
removed debugging debris
Browse files Browse the repository at this point in the history
  • Loading branch information
MGS-sails committed Oct 1, 2024
1 parent 27cc098 commit e95c07d
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/hooks/data/useData/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useState, useEffect } from 'react';
import protectedAxios from 'utils/protectedAxios';
import { all, AxiosResponse } from 'axios';
import { AxiosResponse } from 'axios';

export enum ResponseFormat {
JSON,
Expand Down Expand Up @@ -234,11 +234,6 @@ async function fetchData(
});
} else {
response = await protectedAxios.get(url);
if (url.includes('studies')) {
console.log(url, 'am about to end dis man whole career');
console.log('resp out here', response);
}

}
data = prepareResponseDataBasedOnFormat(response, format, updateState);
updateState({
Expand Down

0 comments on commit e95c07d

Please sign in to comment.