diff --git a/components/UserProfile/DropdownContent.vue b/components/UserProfile/DropdownContent.vue index 65d91175f..9133d7bcd 100644 --- a/components/UserProfile/DropdownContent.vue +++ b/components/UserProfile/DropdownContent.vue @@ -54,19 +54,19 @@ const links = computed(():UserProfileLink[] => { ] : [] ), - ...(!connectPluginInstalled.value - ? [ - { - click: () => { - promoStore.promoShow(); - }, - icon: InformationCircleIcon, - text: props.t('Enhance your Unraid experience with Connect'), - title: props.t('Enhance your Unraid experience with Connect'), - }, - ] - : [] - ), + // ...(!connectPluginInstalled.value + // ? [ + // { + // click: () => { + // promoStore.promoShow(); + // }, + // icon: InformationCircleIcon, + // text: props.t('Enhance your Unraid experience with Connect'), + // title: props.t('Enhance your Unraid experience with Connect'), + // }, + // ] + // : [] + // ), ]; });