fix(bitbucket): fix rebasing mistakes in bitbucket backend and deps (#1522)

This commit is contained in:
Shawn Erquhart
2018-07-26 13:42:19 -04:00
committed by GitHub
parent 6eb86957d0
commit bdfd9443db
8 changed files with 9 additions and 11 deletions

View File

@ -147,8 +147,6 @@ export default class GitGatewayAuthenticationPage extends React.Component {
);
}
console.log('returning');
return (
<AuthenticationPage renderPageContent={() => (
<AuthForm onSubmit={this.handleLogin}>

View File

@ -113,7 +113,6 @@ export default class GitGateway {
requestFunction: this.requestFunction,
hasWriteAccess: async () => true,
});
console.log(this.api);
this.backend = new BitBucketBackend(this.config, { proxied: true, API: this.api });
}