Skip to content

Commit c2564a1

Browse files
committed
remove console.log()
1 parent 2f24d32 commit c2564a1

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

.DS_Store

0 Bytes
Binary file not shown.

src/collections/infra/repositories/CollectionsRepository.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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) => {

src/collections/infra/repositories/transformers/collectionTransformers.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)