refactor: comment out connect promo dropdown item

This commit is contained in:
Zack Spear
2023-08-07 16:10:22 -07:00
parent 2fbd2f1304
commit 2bdc718e0a

View File

@@ -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'),
// },
// ]
// : []
// ),
];
});