diff --git a/ui/app/adapters/application.js b/ui/app/adapters/application.js index f181d2cf5..1e5c97333 100644 --- a/ui/app/adapters/application.js +++ b/ui/app/adapters/application.js @@ -24,10 +24,9 @@ export default RESTAdapter.extend({ return this._super(...arguments).catch(error => { const errorCodes = codesForError(error); - const isNotAuthorized = errorCodes.includes('403'); const isNotImplemented = errorCodes.includes('501'); - if (isNotAuthorized || isNotImplemented) { + if (isNotImplemented) { return []; }