diff --git a/api/lib/http/index.ts b/api/lib/http/index.ts index 6db17aa4c0..5bb7ebcf1f 100644 --- a/api/lib/http/index.ts +++ b/api/lib/http/index.ts @@ -6,9 +6,6 @@ const previewDeploymentId: string = process.env.PREVIEW_DEPLOYMENT_ID; if (previewDeploymentId) { axios.defaults.headers.common['hmcts-deployment-id'] = previewDeploymentId; - // TODO: To be removed after testing completed - // for testing purposes - printing deployment id here: - console.log(`Preview Deployment ID for testing: ${previewDeploymentId}`); } axios.defaults.headers.common['Content-Type'] = 'application/json'; http.interceptors.request.use(requestInterceptor);