Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewChubatiuk committed Apr 20, 2024
1 parent 1290355 commit b861af4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/cypress/cypress.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ let csrfToken;

function seedDatabase(seedValues) {
const request = seedValues.shift();
headers = Object.assign({}, config.headers, request.config.headers);
reqConfig = Object.assign({}, config, request.config, { headers });
const headers = Object.assign({}, config.headers, request.config.headers);
const reqConfig = Object.assign({}, config, request.config, { headers });
if (csrfToken) {
const csrfValue = csrfToken.substring(csrfToken.indexOf("=") + 1, csrfToken.indexOf(";"));
if (request.type === "form") {
Expand Down

0 comments on commit b861af4

Please sign in to comment.