From 5a276f2e04f084bef7b8ea9311f17dc464043add Mon Sep 17 00:00:00 2001 From: AustinMroz Date: Thu, 15 Jan 2026 16:27:52 -0800 Subject: [PATCH] [backport cloud/1.37] Make sure toggle visibility checks remote config (#8088) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Manual backport of #8086 (this time to the correct target branch) ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8088-backport-cloud-1-37-Make-sure-toggle-visibility-checks-remote-config-2ea6d73d3650813b8207d12ed42541f5) by [Unito](https://www.unito.io) --- src/components/sidebar/SideToolbar.vue | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/components/sidebar/SideToolbar.vue b/src/components/sidebar/SideToolbar.vue index 477a0d9d1..44dff5fc2 100644 --- a/src/components/sidebar/SideToolbar.vue +++ b/src/components/sidebar/SideToolbar.vue @@ -44,7 +44,9 @@ - + @@ -88,11 +90,7 @@ const menuItemStore = useMenuItemStore() const sideToolbarRef = ref() const topToolbarRef = ref() const bottomToolbarRef = ref() - -const linearFeatureFlag = useFeatureFlags().featureFlag( - 'linearToggleEnabled', - false -) +const { flags } = useFeatureFlags() const isSmall = computed( () => settingStore.get('Comfy.Sidebar.Size') === 'small'