diff --git a/packages/editor-ui/src/components/MainSidebarVersionControl.vue b/packages/editor-ui/src/components/MainSidebarVersionControl.vue index 14496ccb61a..86e47b96071 100644 --- a/packages/editor-ui/src/components/MainSidebarVersionControl.vue +++ b/packages/editor-ui/src/components/MainSidebarVersionControl.vue @@ -25,7 +25,7 @@ const tooltipOpenDelay = ref(300); const currentBranch = computed(() => { return versionControlStore.preferences.branchName; }); - +const featureEnabled = computed(() => window.localStorage.getItem('version-control')); const setupButtonTooltipPlacement = computed(() => (props.isCollapsed ? 'right' : 'top')); async function pushWorkfolder() { @@ -80,6 +80,7 @@ const goToVersionControlSetup = async () => {