Skip to content

Commit

Permalink
chore: runs yarn lint:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Pixelik committed Nov 11, 2023
1 parent 0fc511b commit 34b5bc5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions addon/utils/mung-options-for-fetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ export default function mungOptionsForFetch(
let fetchOptions = {
credentials: 'same-origin',
};

for (const key in options) {
if (Object.prototype.hasOwnProperty.call(options, key)) {
fetchOptions[key] = options[key]
fetchOptions[key] = options[key];
}
}

const hash = fetchOptions as FetchOptions;

// Default to 'GET' in case `type` is not passed in (mimics jQuery.ajax).
Expand Down
2 changes: 1 addition & 1 deletion tests/dummy/config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = async function () {
name: 'ember-lts-3.28',
npm: {
devDependencies: {
'ember-source': '~3.28.0'
'ember-source': '~3.28.0',
},
},
},
Expand Down

0 comments on commit 34b5bc5

Please sign in to comment.