From 44e6bd36e7c7f061732d213e2075df10f9545b61 Mon Sep 17 00:00:00 2001 From: Lautaro Petaccio Date: Wed, 6 Apr 2022 18:21:29 -0300 Subject: [PATCH] fix: Remove console log --- src/Forum/utils.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Forum/utils.ts b/src/Forum/utils.ts index 8b760ade..ae83470a 100644 --- a/src/Forum/utils.ts +++ b/src/Forum/utils.ts @@ -77,9 +77,5 @@ function getThumbnailURL(item: FullItem) { } function getContentsStorageUrl(hash: string = '') { - console.log( - 'URL', - `${BUILDER_SERVER_URL}/${API_VERSION}/storage/contents/${hash}` - ) return `${BUILDER_SERVER_URL}/${API_VERSION}/storage/contents/${hash}` }