From 00abe43df3f13af69fd04b5672b884d8ead151d2 Mon Sep 17 00:00:00 2001 From: Lucas Bento Date: Sun, 31 Oct 2021 17:17:16 +0100 Subject: [PATCH 1/3] Remove unneeded `console.info` --- src/components/common/DownloadFileButton.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/common/DownloadFileButton.js b/src/components/common/DownloadFileButton.js index 37967e88..74448240 100644 --- a/src/components/common/DownloadFileButton.js +++ b/src/components/common/DownloadFileButton.js @@ -5,9 +5,8 @@ import { DownloadOutlined } from '@ant-design/icons' import { getBinaryFileURL } from '../../utils' const DownloadFileButton = styled( - ({ visible, version, path, packageName, ...props }) => { - console.info(visible, version, path, packageName) - return visible ? ( + ({ visible, version, path, packageName, ...props }) => + visible ? (