diff --git a/plugins/bazaar/src/components/EntityBazaarInfoContent/EntityBazaarInfoContent.tsx b/plugins/bazaar/src/components/EntityBazaarInfoContent/EntityBazaarInfoContent.tsx index 0c7b0bb126..1a8229341b 100644 --- a/plugins/bazaar/src/components/EntityBazaarInfoContent/EntityBazaarInfoContent.tsx +++ b/plugins/bazaar/src/components/EntityBazaarInfoContent/EntityBazaarInfoContent.tsx @@ -133,7 +133,7 @@ export const EntityBazaarInfoContent = ({ label: 'Docs', icon: , href: bazaarProject?.docs, - disabled: bazaarProject?.docs === null || bazaarProject?.docs === '', + disabled: bazaarProject?.docs === undefined || bazaarProject?.docs === '', }, ]; diff --git a/plugins/bazaar/src/components/HomePageBazaarInfoCard/HomePageBazaarInfoCard.tsx b/plugins/bazaar/src/components/HomePageBazaarInfoCard/HomePageBazaarInfoCard.tsx index 782b7d3c67..090fa44854 100644 --- a/plugins/bazaar/src/components/HomePageBazaarInfoCard/HomePageBazaarInfoCard.tsx +++ b/plugins/bazaar/src/components/HomePageBazaarInfoCard/HomePageBazaarInfoCard.tsx @@ -203,7 +203,8 @@ export const HomePageBazaarInfoCard = ({ icon: , href: bazaarProject.value?.docs, disabled: - bazaarProject.value?.docs === null || bazaarProject.value?.docs === '', + bazaarProject.value?.docs === undefined || + bazaarProject.value?.docs === '', }, ];