Skip to content

Commit

Permalink
fix/batch-of-fixes-2-feb
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonardo Mendoza Fernadez authored and Leonardo Mendoza Fernadez committed Feb 3, 2024
1 parent ab372f8 commit b924166
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 56 deletions.
1 change: 0 additions & 1 deletion src/app/core/register2/register2.form-adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ export function Register2FormAdapterMixin<T extends Constructor<any>>(base: T) {
}

formGroupToAffiliationRegisterForm(formGroup: UntypedFormGroup) {
console.log('formGroupToAffiliationRegisterForm', formGroup)
const value = formGroup.controls['organization'].value
const departmentName = formGroup.controls['departmentName'].value
const roleTitle = formGroup.controls['roleTitle'].value
Expand Down
49 changes: 0 additions & 49 deletions src/app/core/register2/sample-working.json

This file was deleted.

2 changes: 0 additions & 2 deletions src/app/register2/register-state.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,9 @@ export class RegisterStateService {
if (this.primaryEmailMatched) {
this.rorIdHasBeenMatched = true
this.matchOrganization$.next(this.primaryEmailMatched)
console.log('primaryEmailMatched', this.primaryEmailMatched)
} else if (this.secondaryEmail) {
this.rorIdHasBeenMatched = true
this.matchOrganization$.next(this.secondaryEmail)
console.log('secondaryEmail', this.secondaryEmail)
} else {
this.rorIdHasBeenMatched = false
this.matchOrganization$.next('')
Expand Down
2 changes: 0 additions & 2 deletions src/proxy.conf.qa.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export default {
bypass: function (req, res, proxyOptions) {
/// PRINT REQUEST PATH
if (req.headers.accept?.includes('html')) {
console.log('Skipping proxy', req.path)
return '/index.html'
}
req.headers['X-Dev-Header'] = 'local-host-proxy-call'
Expand All @@ -21,7 +20,6 @@ export default {
bypass: function (req, res, proxyOptions) {
/// PRINT REQUEST PATH
if (req.headers.accept?.includes('html') && req.path !== '/signout') {
console.log('Skipping proxy', req.path)
return '/index.html'
}
req.headers['X-Dev-Header'] = 'local-host-proxy-call'
Expand Down
2 changes: 0 additions & 2 deletions src/proxy.conf.sandbox.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export default {
bypass: function (req, res, proxyOptions) {
/// PRRINT REQUEST PATH
if (req.headers.accept.includes('html')) {
console.log('Skipping proxy', req.path)
return '/index.html'
}
req.headers['X-Dev-Header'] = 'local-host-proxy-call'
Expand All @@ -21,7 +20,6 @@ export default {
bypass: function (req, res, proxyOptions) {
/// PRRINT REQUEST PATH
if (req.headers.accept.includes('html')) {
console.log('Skipping proxy', req.path)
return '/index.html'
}
req.headers['X-Dev-Header'] = 'local-host-proxy-call'
Expand Down

0 comments on commit b924166

Please sign in to comment.