From c56726abd1d313032186cad675c244fe8b9e03c1 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Wed, 10 Jun 2020 10:24:10 -0500 Subject: [PATCH] Remove unnecessary fetch-setting Originally this was failing because it only had a getter. I tried replacing it with a computed property and that succeeded, but since we have already stopped using jQuery, we might as well remove it. --- ui/app/adapters/application.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ui/app/adapters/application.js b/ui/app/adapters/application.js index 5a4d99804..60a6616c8 100644 --- a/ui/app/adapters/application.js +++ b/ui/app/adapters/application.js @@ -10,10 +10,6 @@ export const namespace = 'v1'; @classic export default class Application extends RESTAdapter { - // TODO: This can be removed once jquery-integration is turned off for - // the entire app. - useFetch = true; - namespace = namespace; @service system;