diff --git a/app/assets/javascripts/directives/views/accountMenu.ts b/app/assets/javascripts/directives/views/accountMenu.ts index e3d057847..21ed1a884 100644 --- a/app/assets/javascripts/directives/views/accountMenu.ts +++ b/app/assets/javascripts/directives/views/accountMenu.ts @@ -135,7 +135,7 @@ class AccountMenuCtrl extends PureViewCtrl<{}, AccountMenuState> { async $onInit() { super.$onInit(); this.setState({ - showSessions: await this.application.userCanManageSessions() + showSessions: this.appState.enableUnfinishedFeatures && await this.application.userCanManageSessions() }); const sync = this.appState.sync;