From 3067191c5197cacda71b0643bea4327f13bd8ce3 Mon Sep 17 00:00:00 2001 From: Luiz Aoqui Date: Mon, 17 Apr 2023 20:33:50 -0400 Subject: [PATCH] ui: fix notification service in token controller (#16918) Remove unneeded service injection. This service is not being used in this controller and currently only exists in `main`, causing `release/1.5.x` to break. --- ui/app/controllers/settings/tokens.js | 1 - 1 file changed, 1 deletion(-) diff --git a/ui/app/controllers/settings/tokens.js b/ui/app/controllers/settings/tokens.js index 587b66fd4..77dc9a9a5 100644 --- a/ui/app/controllers/settings/tokens.js +++ b/ui/app/controllers/settings/tokens.js @@ -23,7 +23,6 @@ export default class Tokens extends Controller { @service token; @service store; @service router; - @service notifications; queryParams = ['code', 'state', 'jwtAuthMethod'];