Merge pull request #1163 from cptran777/hotfix-debugger-line

Remove stray debugger statement
This commit is contained in:
Charlie Tran 2018-05-14 17:26:27 -07:00 committed by GitHub
commit 6f2e91bcc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -200,8 +200,6 @@ export default class DatasetAuthors extends Component {
const owners = get(this, 'owners') || []; const owners = get(this, 'owners') || [];
const { notify } = get(this, 'notifications'); const { notify } = get(this, 'notifications');
debugger;
if (ownerAlreadyExists(owners, { userName: newOwner.userName, source: newOwner.source })) { if (ownerAlreadyExists(owners, { userName: newOwner.userName, source: newOwner.source })) {
return void notify(NotificationEvent.info, { content: 'Owner has already been added to "confirmed" list' }); return void notify(NotificationEvent.info, { content: 'Owner has already been added to "confirmed" list' });
} }