diff --git a/frontend/resourceadm/hooks/queries/useGetResourceListQuery.ts b/frontend/resourceadm/hooks/queries/useGetResourceListQuery.ts index 77a38d3512a..c883f5e9291 100644 --- a/frontend/resourceadm/hooks/queries/useGetResourceListQuery.ts +++ b/frontend/resourceadm/hooks/queries/useGetResourceListQuery.ts @@ -16,9 +16,6 @@ export const useGetResourceListQuery = (org: string): UseQueryResult([QueryKey.ResourceList, org], () => getResourceList(org), { - select: (data) => { - console.log('data', data); - return data && sortResourceListByDateAndMap(data); - }, + select: (data) => data && sortResourceListByDateAndMap(data), }); };