From a88085254ebf500945fe1c54db8ee3137f057702 Mon Sep 17 00:00:00 2001 From: Michael Anstis Date: Thu, 9 Jan 2025 18:47:15 +0000 Subject: [PATCH] AAP-34646: Prevent Feedback Panel from Opening on Status Bar Click (#1756) --- src/features/lightspeed/statusBar.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/features/lightspeed/statusBar.ts b/src/features/lightspeed/statusBar.ts index 5be449661..6abe829ff 100644 --- a/src/features/lightspeed/statusBar.ts +++ b/src/features/lightspeed/statusBar.ts @@ -116,9 +116,7 @@ export class LightspeedStatusBar { } public async lightSpeedStatusBarClickHandler() { - if (await this.lightspeedAuthenticatedUser.isAuthenticated()) { - vscode.commands.executeCommand(LightSpeedCommands.LIGHTSPEED_FEEDBACK); - } else { + if (!(await this.lightspeedAuthenticatedUser.isAuthenticated())) { vscode.commands.executeCommand( LightSpeedCommands.LIGHTSPEED_AUTH_REQUEST, );