From 270d1d0fa9254cf882994b7f229779a033e58601 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Mon, 15 Jul 2019 10:15:49 -0300 Subject: Add eslint dependency (#6842) We had forgotten to add `eslint` as a dependency, even though we use it directly. It had always worked because we have dependencies that also depend upon it. `eslint` has also been updated to v6, which necessitated two minor changes. --- ui/app/helpers/utils/fetch.js | 2 -- 1 file changed, 2 deletions(-) (limited to 'ui') diff --git a/ui/app/helpers/utils/fetch.js b/ui/app/helpers/utils/fetch.js index 7bb483818..1e7ef594f 100644 --- a/ui/app/helpers/utils/fetch.js +++ b/ui/app/helpers/utils/fetch.js @@ -1,5 +1,3 @@ -/* global AbortController */ - export default function ({ timeout = 120000 } = {}) { return function _fetch (url, opts) { return new Promise(async (resolve, reject) => { -- cgit