Skip to content

Commit

Permalink
Fix: telesales for PII accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
beatrizmaselli committed May 17, 2024
1 parent 56825e5 commit dc81e40
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

### Fixed
- enable telesales for PII accounts

## [2.170.2] - 2024-05-02

### Changed
Expand Down
6 changes: 5 additions & 1 deletion node/clients/checkout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,11 @@ export class Checkout extends JanusClient {
return this.post<OrderForm>(
this.routes.orderForm(orderFormId),
{ expectedOrderFormSections: ['items'] },
{ metric: 'checkout-orderForm' }
{ metric: 'checkout-orderForm',

Check failure on line 191 in node/clients/checkout.ts

View workflow job for this annotation

GitHub Actions / Lint

Insert `⏎·······`
headers: {

Check failure on line 192 in node/clients/checkout.ts

View workflow job for this annotation

GitHub Actions / Lint

Insert `··`
'VtexIdclientAutCookie': this.context.adminUserAuthToken

Check failure on line 193 in node/clients/checkout.ts

View workflow job for this annotation

GitHub Actions / Lint

Replace `'VtexIdclientAutCookie':·this.context.adminUserAuthToken` with `··VtexIdclientAutCookie:·this.context.adminUserAuthToken,`
}

Check failure on line 194 in node/clients/checkout.ts

View workflow job for this annotation

GitHub Actions / Lint

Replace `}` with `··},`
},

Check failure on line 195 in node/clients/checkout.ts

View workflow job for this annotation

GitHub Actions / Lint

Replace `·},` with `}`
)
}

Expand Down

0 comments on commit dc81e40

Please sign in to comment.