From: Stephen Smith Date: Thu, 25 May 2023 19:05:14 +0000 (-0400) Subject: 20031: Remove console log X-Git-Tag: 2.7.0~20^2~4 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/5786e88839dd7ef52885a03aedfc7642b19cd5a1?ds=sidebyside 20031: Remove console log Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- diff --git a/src/store/collections/collection-partial-copy-actions.ts b/src/store/collections/collection-partial-copy-actions.ts index 7897efc4..78db1896 100644 --- a/src/store/collections/collection-partial-copy-actions.ts +++ b/src/store/collections/collection-partial-copy-actions.ts @@ -230,7 +230,6 @@ export const copyCollectionPartialToSeparateCollections = (fileSelection: Collec dispatch(progressIndicatorActions.STOP_WORKING(COLLECTION_PARTIAL_COPY_TO_SEPARATE_COLLECTIONS)); } catch (e) { const error = getCommonResourceServiceError(e); - console.log(e, error); if (error === CommonResourceServiceError.UNIQUE_NAME_VIOLATION) { dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'Collection from one or more files already exists', hideDuration: 2000, kind: SnackbarKind.ERROR })); } else if (error === CommonResourceServiceError.UNKNOWN) { diff --git a/src/views-components/dialog-forms/partial-copy-to-new-collection-dialog.ts b/src/views-components/dialog-forms/partial-copy-to-new-collection-dialog.ts index 65b65db4..3a321def 100644 --- a/src/views-components/dialog-forms/partial-copy-to-new-collection-dialog.ts +++ b/src/views-components/dialog-forms/partial-copy-to-new-collection-dialog.ts @@ -14,7 +14,6 @@ export const PartialCopyToNewCollectionDialog = compose( reduxForm({ form: COLLECTION_PARTIAL_COPY_FORM_NAME, onSubmit: (data, dispatch, dialog) => { - console.log(dialog.data); dispatch(copyCollectionPartialToNewCollection(dialog.data, data)); } }),