Skip to content

Commit e764219

Browse files
authored
Merge pull request #756 from companieshouse/chore/roe-2732/remove-debuggers
chore/roe-2732: remove debuggers
2 parents 1c97aad + 09defbe commit e764219

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/services/overseas-entities/service.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ export default class OverseasEntityService {
2828
const URL = `transactions/${transactionId}/overseas-entity/${overseasEntityId}${(forceFetch ? "?force=true" : "")}`
2929
const response: HttpResponse = await this.client.httpGet(URL);
3030

31-
console.log(`getOverseasEntity forceFetch value: ${forceFetch}`);
32-
console.log(`getOverseasEntity URL: ${URL}`);
33-
3431
if (response.error) {
3532
return {
3633
httpStatusCode: response.status,
@@ -89,9 +86,6 @@ export default class OverseasEntityService {
8986

9087
public async putOverseasEntity (transactionId: string, overseasEntityId: string, body: OverseasEntity, forceUpdate: boolean = false): Promise<Resource<HttpStatusCode> | ApiErrorResponse> {
9188
const URL = `transactions/${transactionId}/overseas-entity/${overseasEntityId}${(forceUpdate ? "?force=true" : "")}`
92-
93-
console.log(`putOverseasEntity forceUpdate value: ${forceUpdate}`);
94-
console.log(`putOverseasEntity URL: ${URL}`);
9589
const resp = await this.client.httpPut(URL, mapOverseasEntity(body));
9690

9791
if (resp.error) {

0 commit comments

Comments
 (0)