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