File tree Expand file tree Collapse file tree 3 files changed +0
-4
lines changed
src/collections/infra/repositories Expand file tree Collapse file tree 3 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -476,7 +476,6 @@ export class CollectionsRepository extends ApiRepository implements ICollections
476476 public async getCollectionLinks ( collectionIdOrAlias : number | string ) : Promise < CollectionLinks > {
477477 return this . doGet ( `/${ this . collectionsResourceName } /${ collectionIdOrAlias } /links` , true )
478478 . then ( ( response ) => {
479- console . log ( 'getCollectionLinks response:' , response . data . data ) // Print the response
480479 return transformCollectionLinksResponseToCollectionLinks ( response )
481480 } )
482481 . catch ( ( error ) => {
Original file line number Diff line number Diff line change @@ -160,9 +160,6 @@ export const transformCollectionLinksResponseToCollectionLinks = (
160160 const linkedCollections = responseDataPayload . linkedDataverses
161161 const collectionsLinkingToThis = responseDataPayload . dataversesLinkingToThis
162162 const linkedDatasets = responseDataPayload . linkedDatasets
163- console . log ( 'linkedCollections' , linkedCollections )
164- console . log ( 'collectionsLinkedToThis' , collectionsLinkingToThis )
165- console . log ( 'linkedDatasets' , linkedDatasets )
166163 return {
167164 linkedCollections,
168165 collectionsLinkingToThis,
You can’t perform that action at this time.
0 commit comments