Skip to content

Commit 34b5bc5

Browse files
committed
chore: runs yarn lint:fix
1 parent 0fc511b commit 34b5bc5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

addon/utils/mung-options-for-fetch.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ export default function mungOptionsForFetch(
1515
let fetchOptions = {
1616
credentials: 'same-origin',
1717
};
18-
18+
1919
for (const key in options) {
2020
if (Object.prototype.hasOwnProperty.call(options, key)) {
21-
fetchOptions[key] = options[key]
21+
fetchOptions[key] = options[key];
2222
}
2323
}
24-
24+
2525
const hash = fetchOptions as FetchOptions;
2626

2727
// Default to 'GET' in case `type` is not passed in (mimics jQuery.ajax).

tests/dummy/config/ember-try.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module.exports = async function () {
1717
name: 'ember-lts-3.28',
1818
npm: {
1919
devDependencies: {
20-
'ember-source': '~3.28.0'
20+
'ember-source': '~3.28.0',
2121
},
2222
},
2323
},

0 commit comments

Comments
 (0)